Component | Build Status |
---|---|
Management Libraries | |
Client Libraries |
This project provides an isomorphic Javascript package with TypeScript definitions that makes it easy to consume and manage Microsoft Azure Services. It supports SDKs for:
- ARM services (control plane) (packages with the naming convention of
@azure/arm-<servicename>
) - data plane of some Azure services (packages with the naming convention of
@azure/<servicename>
).
Documentation of the supported SDKs can be found here:
- https://docs.microsoft.com/en-us/javascript/azure - This website primarily provides SDK documentation for
- ARM based services (
@azure/arm-<serviceName>
) - data plane SDKs like
@azure/batch
,@azure/graph
, etc.
- ARM based services (
- For Node.js-based authentication, look at ms-rest-nodeauth.
- For browser-based authentication, look at ms-rest-browserauth.
- The browser authentication storage is a little more complicated, so we encourage you to read about how it works before putting it in your application.
This project is licensed under MIT.
- "MIT" license is usually used for the client libraries generated using Autorest.TypeScript that are targeting ARM (V2 version of Azure REST API). The license can be found in "LICENSE.MIT.txt" file in this repository.
This project has adopted the Microsoft Open Source Code of Conduct.
For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.
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 https://github.com/Azure/azure-sdk-for-js.git --recursive
) - Move into SDK directory (
cd azure-sdk-for-js
) - Install all dependencies (
npm install
)
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