Skip to content

bendrucker/azure-blob-list-stream

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

azure-blob-list-stream tests

Stream a list of all files from an Azure Blob Storage collection

Install

$ npm install --save azure-blob-list-stream

Usage

const ListStream = require('azure-blob-list-stream')
const blob = azure.createBlobService(process.env.AZURE_STORAGE_CONNECTION_STRING)

ListStream(blob, 'my-container')
  .on('data', (blob) => console.log(blob.name))

The stream respects backpressure and will only read in new pages from Azure when its internal buffer is empty.

API

ListStream(blob, container, token) -> Readable

Returns a readable stream that emits each Blob Storage file entry.

blob

Required
Type: object

An Azure Blob Storage interface that you construct.

container

Required
Type: string

The name of the storage container to list.

token

Type: string
Default: undefined

A page token at which to start the list operation.

stream.on('page', handler)

Listens on the page event which is emitted each time a new page of results arrives.

handler

Required
Type: function
Arguments: {token, count}

License

MIT © Ben Drucker

About

Stream a list of all files from an Azure Blob Storage collection

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •