azure-storage-js | Microsoft Azure Storage Library for JavaScript ( This repo | Azure library

 by   Azure TypeScript Version: v10.1.0-queue License: MIT

kandi X-RAY | azure-storage-js Summary

kandi X-RAY | azure-storage-js Summary

azure-storage-js is a TypeScript library typically used in Cloud, Azure applications. azure-storage-js has no bugs, it has no vulnerabilities, it has a Permissive License and it has low support. You can download it from GitHub.

This project has been moved to the azure-sdk-for-js repository, specifically under This repository is no longer maintained. For new issues and pull requests, please go to azure-sdk-for-js repository.
Support
    Quality
      Security
        License
          Reuse

            kandi-support Support

              azure-storage-js has a low active ecosystem.
              It has 74 star(s) with 34 fork(s). There are 19 watchers for this library.
              OutlinedDot
              It had no major release in the last 12 months.
              There are 9 open issues and 45 have been closed. On average issues are closed in 78 days. There are 49 open pull requests and 0 closed requests.
              It has a neutral sentiment in the developer community.
              The latest version of azure-storage-js is v10.1.0-queue

            kandi-Quality Quality

              azure-storage-js has no bugs reported.

            kandi-Security Security

              azure-storage-js has no vulnerabilities reported, and its dependent libraries have no vulnerabilities reported.

            kandi-License License

              azure-storage-js is licensed under the MIT License. This license is Permissive.
              Permissive licenses have the least restrictions, and you can use them in most projects.

            kandi-Reuse Reuse

              azure-storage-js releases are available to install and integrate.

            Top functions reviewed by kandi - BETA

            kandi's functional review helps you automatically verify the functionalities of the libraries and avoid rework.
            Currently covering the most popular Java, JavaScript and Python libraries. See a Sample of azure-storage-js
            Get all kandi verified functions for this library.

            azure-storage-js Key Features

            No Key Features are available at this moment for azure-storage-js.

            azure-storage-js Examples and Code Snippets

            No Code Snippets are available at this moment for azure-storage-js.

            Community Discussions

            QUESTION

            How can I read an Append Blob from Azure Blob Storage to a string with Node.js SDK?
            Asked 2019-Jan-11 at 02:04

            I'm following the example here https://github.com/Azure/azure-storage-js/blob/master/blob/samples/basic.sample.js about reading a Blob from Azure Blob Storage to a string using the Node.js SDK.

            The blob I'm trying to read is an Append Blob.

            First of all reading the stream into a string takes a really long time and in the end I get a HTTP 412 error.

            I also asked this question here: https://github.com/Azure/azure-storage-js/issues/51

            I'm doing this with Node.js v10.14.1 and the SDK I'm using is @azure/storage-blob@10.3.0.

            My code is here:

            ...

            ANSWER

            Answered 2019-Jan-11 at 02:04

            This questions has been resolved in GitHub issue https://github.com/Azure/azure-storage-js/issues/51 Copy solution from GitHub issue to here.

            blobURL.download() will try to download a blob with a HTTP Get request into a stream. When stream unexpected ends due to such as network broken, a retry will resume the stream read from the broken point with a new HTTP Get request.

            The second HTTP request will use conditional header IfMatch with the blob's ETag returned in first request to make sure the blob doesn't change when the 2nd retry happens. Otherwise, a 412 conditional header doesn't match error will be returned. This strict strategy is used to avoid data integrity issues, such as the blob maybe totally over written by someone others. However, this strategy seems avoiding you from reading a constantly updated log file when a retry happens.

            While I don't think it's bug, but we need to make this scenario work for you. Please have a try with following solution: snapshot the append blob first, and read from the snapshot blob

            Source https://stackoverflow.com/questions/54039212

            Community Discussions, Code Snippets contain sources that include Stack Exchange Network

            Vulnerabilities

            No vulnerabilities reported

            Install azure-storage-js

            You can download it from GitHub.

            Support

            For any new features, suggestions and bugs create an issue on GitHub. If you have any questions check and ask questions on community page Stack Overflow .
            Find more information at:

            Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items

            Find more libraries

            Stay Updated

            Subscribe to our newsletter for trending solutions and developer bootcamps

            Agree to Sign up and Terms & Conditions

            Share this Page

            share link