This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Note
Access to this page requires authorization. You can trysigning in orchanging directories.
Access to this page requires authorization. You can trychanging directories.
This article shows you how to connect to Azure Blob Storage by using the Azure Blob Storage client library for JavaScript. Once connected, use thedeveloper guides to learn how your code can operate on containers, blobs, and features of the Blob Storage service.
If you're looking to start with a complete example, see the client library quickstart forJavaScript orTypeScript.
API reference |Package (npm) |Library source code |Samples |Give feedback
This section walks you through preparing a project to work with the Azure Blob Storage client library for JavaScript.
Open a command prompt and navigate to your project folder. Change<project-directory> to your folder name:
cd <project-directory>If you don't have apackage.json file already in your directory, initialize the project to create the file:
npm init -yFrom your project directory, install packages for the Azure Blob Storage and Azure Identity client libraries using thenpm install oryarn add commands. The@azure/identity package is needed for passwordless connections to Azure services.
npm install @azure/storage-blob @azure/identityTo connect an app to Blob Storage, create an instance of theBlobServiceClient class. This object is your starting point to interact with data resources at the storage account level. You can use it to operate on the storage account and its containers. You can also use the service client to create container clients or blob clients, depending on the resource you need to work with.
To learn more about creating and managing client objects, including best practices, seeCreate and manage client objects that interact with data resources.
You can authorize aBlobServiceClient object by using a Microsoft Entra authorization token, an account access key, or a shared access signature (SAS). For optimal security, Microsoft recommends using Microsoft Entra ID with managed identities to authorize requests against blob data. For more information, seeAuthorize access to blobs using Microsoft Entra ID.
To authorize with Microsoft Entra ID, you need to use asecurity principal. Which type of security principal you need depends on where your app runs. Use the following table as a guide:
| Where the app runs | Security principal | Guidance |
|---|---|---|
| Local machine (developing and testing) | Service principal | To learn how to register the app, set up a Microsoft Entra group, assign roles, and configure environment variables, seeAuthorize access using developer service principals |
| Local machine (developing and testing) | User identity | To learn how to set up a Microsoft Entra group, assign roles, and sign in to Azure, seeAuthorize access using developer credentials |
| Hosted in Azure | Managed identity | To learn how to enable managed identity and assign roles, seeAuthorize access from Azure-hosted apps using a managed identity |
| Hosted outside of Azure (for example, on-premises apps) | Service principal | To learn how to register the app, assign roles, and configure environment variables, seeAuthorize access from on-premises apps using an application service principal |
An easy and secure way to authorize access and connect to Blob Storage is to obtain an OAuth token by creating aDefaultAzureCredential instance. You can then use that credential to create aBlobServiceClient object.
The following example creates aBlobServiceClient object usingDefaultAzureCredential:
const accountName = "<account-name>";const accountURL = `https://${accountName}.blob.core.windows.net`;const blobServiceClient = new BlobServiceClient( accountURL, new DefaultAzureCredential());This code example can be used for JavaScript or TypeScript projects.
As you build apps to work with data resources in Azure Blob Storage, your code primarily interacts with three resource types: storage accounts, containers, and blobs. To learn more about these resource types, how they relate to one another, and how apps interact with resources, seeUnderstand how apps interact with Blob Storage data resources.
The following guides show you how to access data and perform specific actions using the Azure Storage client library for #"storage-retry-policy-javascript" data-linktype="relative-path">Configure a retry policy
Was this page helpful?
Need help with this topic?
Want to try using Ask Learn to clarify or guide you through this topic?
Was this page helpful?
Want to try using Ask Learn to clarify or guide you through this topic?