named-level-store

1.0.0 • Public • Published

named-level-store stability

npm version build status test coverage downloads js-standard-style

Create a levelDB instance on your local machine. Will return the same database given the same name, each time

Usage

const level = require('named-level-store')
const db = level('my-cool-database-name')
console.log(db.location)
// => /Users/anon/.leveldb/my-cool-database-name

API

db = level(name)

Create a database under ~/.leveldb. Useful to create a database and not have to worry where it's stored. Sets the db.location property to reflect where the database was stored

Installation

$ npm install named-level-store

License

MIT

Dependents (2)

Package Sidebar

Install

npm i named-level-store

Weekly Downloads

0

Version

1.0.0

License

MIT

Last publish

Collaborators

  • yoshuawuyts