azure-sdk-for-js/sdk/storage
EmmaZhu-MSFT e3475bc17b
Update blob swagger spec to a commit on main branch (#31851)
### Packages impacted by this PR


### Issues associated with this PR


### Describe the problem that is addressed by this PR


### What are the possible designs available to address the problem? If
there are more than one possible design, why was the one in this PR
chosen?


### Are there test cases added in this PR? _(If not, why?)_


### Provide a list of related PRs _(if any)_


### Command used to generate this PR:**_(Applicable only to SDK release
request PRs)_

### Checklists
- [ ] Added impacted package name to the issue description
- [ ] Does this PR needs any fixes in the SDK Generator?** _(If so,
create an Issue in the
[Autorest/typescript](https://github.com/Azure/autorest.typescript)
repository and link it here)_
- [ ] Added a changelog (if necessary)
2024-11-20 16:52:36 +08:00
..
arm-storage [EngSys] move to vendored version of cross-env via dev-tool 2024-11-02 00:48:06 +00:00
arm-storage-profile-2020-09-01-hybrid [EngSys] move to vendored version of cross-env via dev-tool 2024-11-02 00:48:06 +00:00
perf-tests [EngSys] remove "audit" NPM script and it's related file 2024-10-25 19:28:06 +00:00
storage-blob Update blob swagger spec to a commit on main branch (#31851) 2024-11-20 16:52:36 +08:00
storage-blob-changefeed [EngSys] move to vendored version of cross-env via dev-tool 2024-11-02 00:48:06 +00:00
storage-common/src [EngSys] standardize OSS copyright header 2024-08-27 13:01:38 -07:00
storage-file-datalake [Storage] Bump version for STG96 GA release (#31755) 2024-11-18 14:12:03 +08:00
storage-file-share [Storage] Bump version for STG96 GA release (#31755) 2024-11-18 14:12:03 +08:00
storage-internal-avro [EngSys] move to vendored version of cross-env via dev-tool 2024-11-02 00:48:06 +00:00
storage-queue [Storage] Bump version for STG96 GA release (#31755) 2024-11-18 14:12:03 +08:00
CONTRIBUTING.md
ISSUE_TEMPLATE.md
LICENSE
MigrationGuide.md
README.md
ci.mgmt.yml
ci.yml
sample.env
test-resources-post.ps1 [Storage] Migrate to Bicep (#30852) 2024-08-24 13:36:40 -07:00
test-resources.bicep [Storage] Migrate to Bicep (#30852) 2024-08-24 13:36:40 -07:00

README.md

Azure Storage client library for JavaScript

Azure Storage is a Microsoft-managed service providing cloud storage that is highly available, secure, durable, scalable, and redundant.

This project provides client libraries in JavaScript that makes it easy to consume Microsoft Azure Storage service.

Note: Current Azure Storage client libraries are published from storage/stable branch.

Key concepts

Features

  • Blob Storage
    • Get/Set Blob Service Properties
    • Create/List/Delete Containers
    • Create/Read/List/Update/Delete Block Blobs
    • Create/Read/List/Update/Delete Page Blobs
    • Create/Read/List/Update/Delete Append Blobs
  • Data Lake Storage
    • Create/List/Delete File Systems
    • Create/Read/List/Update/Delete Paths, Directories and Files
  • File Storage
    • Get/Set File Service Properties
    • Create/List/Delete File Shares
    • Create/List/Delete File Directories
    • Create/Read/List/Update/Delete Files
  • Queue Storage
    • Get/Set Queue Service Properties
    • Create/List/Delete Queues
    • Enqueue/Dequeue/Peek/Clear/Update/Delete Queue Messages
  • Features new
    • Asynchronous I/O for all operations using the async methods
    • HttpPipeline which enables a high degree of per-request configurability
    • 1-to-1 correlation with the Storage REST API for clarity and simplicity

Compatibility

These libraries are compatible with Node.js and browsers, and validated against LTS Node.js versions (>=8.16.0) and latest versions of Chrome, Firefox and Edge.

Architecture

The Azure Storage client libraries for JavaScript provides low-level and high-level APIs. Take Blob client library as example:

  • BlobServiceClient, ContainerClient and BlobClient objects provide the low-level API functionality and map one-to-one to the Azure Storage Blob REST APIs.

  • The high-level APIs provide convenience abstractions such as uploading a large stream to a block blob (using multiple PutBlock requests).

Examples

Please check out examples for each libraries

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.

Impressions