UNPKG

@digidem/atomic-fs-blob-store

Version:

blob store that stores blobs on the local file system (like fs-blob-store but atomic)

11 lines (8 loc) 270 B
var blobs = require('fs-blob-store') var store = blobs('tmp') var test = store.createWriteStream({key: 'foo/bar/baz/test.txt'}, function(err, opts) { console.log('done') store.createReadStream(opts).pipe(process.stdout) }) test.write('hello ') test.end('world\n')