Azure SDK for Node.js - Documentation
Перейти к файлу
Amar Zavery 8504273ec6 Merge pull request #1766 from priydes/master
PR for IaaS Classic to ARM migration for Azure Storage
2016-05-26 16:32:28 -07:00
Documentation Update Authentication.md 2016-05-22 09:56:15 -07:00
Tools merging autorest to master 2016-02-27 19:30:26 -08:00
examples Added list and update in webapp sample 2016-05-19 18:34:35 -07:00
jsdocs updated the layout for docs and improved the readme experience 2015-07-17 08:35:44 -07:00
lib Bump version number 2016-05-26 16:15:09 -07:00
runtime updates to runtime and documentation 2016-05-21 18:40:46 -07:00
scripts setup for hyak gen only 2016-03-23 12:12:20 -07:00
tasks Add publish all packages bash script 2015-06-10 14:28:39 -07:00
test re-run tests with new changes 2016-05-24 18:04:56 -07:00
.gitignore updated tests 2016-05-21 19:11:51 -07:00
.jshintignore updated jshint 2015-05-04 16:16:10 -07:00
.jshintrc Disabling unused for now 2014-04-08 15:29:10 +02:00
.npmignore merging autorest to master 2016-02-27 19:30:26 -08:00
.travis.yml merging autorest to master 2016-02-27 19:30:26 -08:00
CONTRIBUTING.md 🐛 Fix link to guidelines in Contributing.md 2016-01-17 19:25:13 +01:00
CONTRIBUTORS.txt adding contributors file 2013-11-08 16:08:26 +08:00
ChangeLog.txt update change log 2015-03-25 12:13:53 -07:00
LICENSE.txt merging autorest to master 2016-02-27 19:30:26 -08:00
README.md Update readme file 2016-03-21 13:59:45 -07:00
gruntfile.js updated the layout for docs and improved the readme experience 2015-07-17 08:35:44 -07:00
gulpfile.js Generate node sdk for Microsoft.DevTestLab provider. 2016-05-20 10:38:32 -07:00
nodeSDK.njsproj Notification Hub record file generation fix 2016-05-17 18:44:54 -07:00
nodeSDK.sln merging autorest to master 2016-02-27 19:30:26 -08:00
package.json test framework changes 2016-05-20 22:32:32 -07:00
swagger_to_sdk_config.json fix lro 2016-05-11 16:26:39 -07:00

README.md

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)
API Apps npm install azure-arm-apiapp
Authorization npm install azure-arm-authorization
CDN npm install azure-arm-cdn
Compute npm install azure-arm-compute
Datalake Analytics azure-arm-datalake-analytics
Datalake Storage azure-arm-datalake-storage
DNS npm install azure-arm-dns
Insights npm install azure-arm-insights
Key Vault npm install azure-arm-keyvault
Redis Cache npm install azure-arm-rediscache
Resource Manager npm install azure-arm-resource
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
Batch npm install azure-arm-batch
 
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?

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