level-fsdown

3.2.3 • Public • Published

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.

/level-fsdown/

    Package Sidebar

    Install

    npm i level-fsdown

    Weekly Downloads

    4

    Version

    3.2.3

    License

    ISC

    Last publish

    Collaborators

    • hij1nx