Microsoft Azure SDK for Node.js - Web Site Management
This project provides a Node.js package that makes it easy to manage Azure resources. Right now it supports:
- Node.js version: 0.6.15 or higher
- API version: 2013-08-01
Features
How to Install
npm install azure-mgmt-resource
How to Use
Authentication
Create the ResourceManagementClient
var fs = require("fs"),
common = require("azure-common"),
resourceManagement = require("azure-mgmt-resource");
var resourceManagementClient = resourceManagement.createResourceManagementClient(new common.TokenCloudCredentials({
subscriptionId: "<your subscription id>",
token: "<your token here>"
}));
Related projects