This project provides a Node.js package that makes it easy to consume and manage Microsoft Azure Services.
We provide both fine-grained modules for different Microsoft Azure services which you can install separately, and an all-up module which contains everything.
Notice: we haven't provided fine-grained modules for every supported Microsoft Azure services yet. This will come soon.
npm install azure
| Azure Services |
| :----------------------------------------------------------------------------- | :--------------------------- |
| Gallery | npm install azure-gallery
|
| Key Vault | npm install azure-keyvault
|
| Monitoring | npm install azure-monitoring
|
| Scheduler | npm install azure-scheduler
|
| Service Bus | npm install azure-sb
|
| Storage | npm install azure-storage
|
| | |
| Azure Resource Management |
| API Apps | npm install azure-arm-apiapp
|
| Authorization | npm install azure-arm-authorization
|
| Compute | npm install azure-arm-compute
|
| Resource Manager | npm install azure-arm-resource
|
| DNS | npm install azure-arm-dns
|
| Insights | npm install azure-arm-insights
|
| Key Vault | npm install azure-arm-keyvault
|
| Virtual Networks | npm install azure-arm-network
|
| Storage | npm install azure-arm-storage
|
| Traffic Manager | npm install azure-arm-trafficManager
|
| WebApps (WebSites) | npm install azure-arm-website
|
| | |
| Azure Service Management |
| Compute | npm install azure-asm-compute
|
| HDInsight | npm install azure-asm-hdinsight
|
| Service Bus | npm install azure-asm-sb
|
| Service Manager | npm install azure-asm-mgmt
|
| Store | npm install azure-asm-store
|
| Scheduler | npm install azure-asm-scheduler
|
| SQL Database | npm install azure-asm-sql
|
| Storage | npm install azure-asm-storage
|
| Subscriptions | npm install azure-asm-subscription
|
| Traffic Manager | npm install azure-asm-trafficManager
|
| Virtual Networks | npm install azure-asm-network
|
| WebSites | npm install azure-asm-website
|
| | |
| Base Libraries | |
| Common SDK Functionality | npm install azure-common
|
- If you would like to become an active contributor to this project please follow the instructions provided in Microsoft Azure Projects Contribution Guidelines.
Want to get started hacking on the code, super! Follow the following instructions to get up and running. These instructions expect you have Git and a supported version of Node installed.
- Fork it
- Git Clone your fork (
git clone {your repo}
) - Move into sdk directory (
cd azure-sdk-for-node
) - Install all dependencies (
npm install
) - Run the tests (
npm test
). You should see all tests passing.
You found something you'd like to change, great! Please submit a pull request and we'll do our best to work with you to get your code included into the project.
- Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request