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

fs-blob-store

Package Overview
Dependencies
Maintainers
1
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

  • 2.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
31K
increased by16.41%
Maintainers
1
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

npm install fs-blob-store

build status dat

Usage

var blobs = require('fs-blob-store')
var store = blobs('./data')

var w = store.createWriteStream()

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

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

API

var store = blobs(dir)

Creates a new instance. dir will be created if it doesn't exist.

var readStream = store.createReadStream(hash)

Open a read stream to a blob

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, hash)

store.exists(hash, cb)

Check if an hash exists in the blob store. Callback is called with callback(err, exists)

store.remove(hash, [cb])

Remove a blob from the store. Callback is called with callback(err, wasDeleted)

License

MIT

Keywords

FAQs

Package last updated on 12 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