3.2.3 • Published 8 years ago

level-fsdown v3.2.3

Weekly downloads
210
License
ISC
Repository
github
Last release
8 years ago

SYNOPSIS

A levelup compatible abstraction for node's fs module to use the file system as a backing store.

BUILDS/TESTS

Build Status

USAGE

const Fsdown = require('level-fsdown')

let db = levelup(__dirname, {
  db: Fsdown,
  valueEncoding: 'json'
})


db.put(['foo', 'bar'], { hello: 'world' }, (err) => {
  if (err) throw err

  // a file containing the json `{ hello: 'world' }` was
  // written to the location `<__dirname>/foo/bar.json`.

  db.get(['foo', 'bar'], (err, value) => {
    if (err) throw err
    console.log(value)
  })
})

When keys are provided as arrays, they are joined with the appropriate path.sep and then prefixed with the location as specified by the constructor.

Supports get, put, del, batch and createReadStream methods.