Azure Core HTTP client library for JavaScript - version 3.0.4
This is the core HTTP pipeline for Azure SDK JavaScript libraries which work in the browser and Node.js. This library is primarily intended to be used in code generated by AutoRest and autorest.typescript
.
Getting started
Currently supported environments
- LTS versions of Node.js
- Latest versions of Safari, Chrome, Edge, and Firefox.
See our support policy for more details.
Installation
This package is primarily used in generated code and not meant to be consumed directly by end users.
Key concepts
You can find an explanation of how this repository's code works by going to our architecture overview.
Examples
Examples can be found in the samples
folder.
Next steps
Build this library (
core-http
). For more information on how to build project in this repo, please refer to the Contributing Guide.The code in
samples\node-sample.ts
shows how to create aServiceClient
instance with a testTokenCredential
implementation and use the client instance to perform aGET
operation from the Azure management service endpoint for subscriptions. To run the code, first obtain an access token to the Azure management service.
One easy way to get an access token is using Azure CLI
- Sign in
az login
- Select the subscription to use
az account set -s <subscription id>
- Obtain an access token
az account get-access-token --resource=https://management.azure.com
NodeJS
Set values of
subscriptionId
andtoken
variable insamples/node-sample.ts
Change directory to samples folder, compile the TypeScript code, then run the sample
cd samples
tsc node-sample.ts
node node-sample.js
Browser
- Set values of
subscriptionId
andtoken
variable insamples/index.js
- Follow the instructions of JavaScript Bundling Guide using Parcel to build and run the code in the browser.
Troubleshooting
If you run into issues while using this library, please feel free to file an issue.
Contributing
If you'd like to contribute to this library, please read the contributing guide to learn more about how to build and test the code.
Azure SDK for JavaScript