npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

named-level-store

1.0.0

@yoshuawuyts

npmHomeRepoSnykSocket
Downloads:138
$ npm install named-level-store
DailyWeeklyMonthlyYearly

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