This project provides Node.js packages that make it easy to consume and manage Azure Services in Visual Studio Code.
- Azure App Service
- Azure App Settings
- Azure Authentication and Subscription Provider
- Azure Extension UI++ utilities (no Azure dependencies)
- Azure Extension UI++ utilities (Azure dependencies)
- Azure Dev
- ESLint config for Azure extensions
In order to develop and debug these packages locally, follow these instructions:
- Navigate to the package you are developing
- Run
npm install
- Run
npm pack
and note down the name of the "tgz" file created - Navigate to the project that references the package you're developing and run
npm install <path to tgz>
Example:
cd ~/repos/vscode-azuretools/ui
npm install
npm pack
cd ~/repos/vscode-azurestorage
npm install ../vscode-azuretools/ui/vscode-azureextensionui-0.44.2.tgz
NOTE: You may also try
npm link
, but we've had issues with this method including breakpoints not being hit and dependencies (e.g. "fs-extra") being removed in the package's repo
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.
When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.
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.