Skip to content
This repository has been archived by the owner on May 5, 2023. It is now read-only.

Azure/azure-sdk-for-node

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ce7f310 · Sep 7, 2016
Sep 3, 2016
Feb 28, 2016
May 20, 2016
Jul 17, 2015
Sep 2, 2016
May 22, 2016
Mar 23, 2016
Jun 10, 2015
Sep 3, 2016
Jul 20, 2016
May 4, 2015
Apr 8, 2014
Feb 28, 2016
Sep 2, 2016
Jan 17, 2016
Sep 7, 2016
Sep 2, 2016
Sep 2, 2016
Sep 2, 2016
Jul 20, 2016
Sep 2, 2016
Aug 17, 2016
Feb 28, 2016
Sep 2, 2016
Sep 2, 2016

Repository files navigation

Azure SDK for Node.js

NPM version Build Status

This project provides a Node.js package that makes it easy to consume and manage Microsoft Azure Services.

Non-Interactive Authentication

If you need to create an automation account for non interactive or scripting scenarios then please take a look at the documentation over here.

Install from npm

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.

Install the all-up module

npm install azure

 

Install individual modules

| Azure Services | | :----------------------------------------------------------------------------- | :--------------------------- | | Gallery | npm install azure-gallery | | Graph | npm install azure-graph | | Key Vault | npm install azure-keyvault | | Monitoring | npm install azure-monitoring | | Scheduler | npm install azure-scheduler | | Service Fabric | npm install azure-servicefabric | | Service Bus | npm install azure-sb | | Storage | npm install azure-storage | | Batch | npm install azure-batch | |   | | | Azure Resource Management (ARM) | | Authorization | npm install azure-arm-authorization | | Batch | npm install azure-arm-batch | | CDN | npm install azure-arm-cdn| | Commerce/Billing/Usage | npm install azure-arm-commerce| | Compute | npm install azure-arm-compute| | Datalake Analytics | azure-arm-datalake-analytics | | Datalake Storage | azure-arm-datalake-storage | | DNS | npm install azure-arm-dns | | DevTest Labs | npm install azure-arm-devtestlabs | | EventHubs | azure-arm-eventhub | | HDInsight | npm install azure-arm-hdinsight | | HDInsightJobs | azure-arm-hdinsight-jobs | | Insights | npm install azure-arm-insights | | IotHub | npm install azure-arm-iothub | | Key Vault | npm install azure-arm-keyvault | | Notification Hubs | azure-arm-notificationhubs | | PowerBi Embedded | azure-arm-powerbiembedded | | Redis Cache | npm install azure-arm-rediscache | | Resource Manager | npm install azure-arm-resource | | ServerManagement | azure-arm-servermanagement | | Servicebus | azure-arm-sb | | Storage | npm install azure-arm-storage | | Traffic Manager | npm install azure-arm-trafficManager| | Virtual Networks | npm install azure-arm-network | | WebApps (WebSites) | npm install azure-arm-website | |   | | | Azure Service Management (ASM) | | 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 Functionality (for ASM & ARM clients generated from old code generator) | npm install azure-common | | Common Functionality for ARM clients generated from Autorest (Generic) | npm install ms-rest | | Common Functionality for ARM clients generated from Autorest (Azure) | npm install ms-rest-azure |

Need Help?

Related Projects

License

This project is licensed under MIT and Apache-2.0.

  • "MIT" license is usually used for the client libraries generated using Autorest that are targeting ARM (V2 version of Azure REST API). The license can be found in "LICENSE.MIT.txt" file in this repository.
  • "Apache-2.0" license is usually used for the client libraries generated using an internal code generator that are targeting ASM (V1 version of Azure REST API). The license can be found in "LICENSE.Apache.txt" file in this repository.

Contribute

Getting Started Developing

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.

  1. Fork it
  2. Git Clone your fork (git clone {your repo})
  3. Move into sdk directory (cd azure-sdk-for-node)
  4. Install all dependencies (npm install)
  5. Run the tests (npm test). You should see all tests passing.

Contributing Code to the Project

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.

  1. Commit your changes (git commit -am 'Add some feature')
  2. Push to the branch (git push origin my-new-feature)
  3. Create new Pull Request