Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

fs-blob-store

Package Overview
Dependencies
Maintainers
2
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fs-blob-store

Streamable content addressable blob object store that is streams2 and implements the blob store interface on top of the fs module

  • 3.0.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
31K
increased by16.41%
Maintainers
2
Weekly downloads
 
Created
Source

fs-blob-store

Streamable content addressable blob object store that is streams2 and implements the blob store interface on top of the fs module.

Conforms to the abstract-blob-store API and passes it's test suite.

npm install fs-blob-store

build status dat

Usage

var blobs = require('fs-blob-store')
var store = blobs({path: './data'})

var w = store.createWriteStream()

w.write('hello ')
w.write('world\n')

w.end(function() {
  console.log('blob written: '+w.hash)
  store.createReadStream(w).pipe(process.stdout)
})

API

var store = blobs(opts)

Creates a new instance. Opts should have a path property to where the blobs should live on the fs. The directory will be created if it doesn't exist. If not supplied it will default to path.join(process.cwd(), 'blobs')

You can also specify a node crytpo module hashing algorithm to use using the algo key in options. The default is sha256.

var readStream = store.createReadStream(opts)

Open a read stream to a blob. opts must have a hash key with the hash of the blob you want to read.

var writeStream = store.createWriteStream([cb])

Add a new blob to the store. Use writeStream.hash to get the hash after the finish event has fired or add a callback which will be called with callback(err, metadata).

store.exists(metadata, cb)

Check if an blob exists in the blob store. metadata must have a hash property. Callback is called with callback(err, exists)

store.remove(metadata, [cb])

Remove a blob from the store. metadata must have a hash property. Callback is called with callback(err, wasDeleted)

License

MIT

Keywords

FAQs

Package last updated on 13 Aug 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc