JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 195777
  • Score
    100M100P100Q10617F
  • License MIT

A convenience package bundling LevelUP & MemDOWN

Package Exports

  • level-mem

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (level-mem) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

level-mem

A convenience package that bundles levelup and memdown and exposes levelup on its export.

level badge npm Node version Build Status david JavaScript Style Guide npm

Use this package to avoid having to explicitly install memdown when you want to use memdown with levelup for non-persistent levelup data storage.

const level = require('level-mem')

// 1) Create our database, with optional options.
//    This will create or open the underlying LevelDB store.
const db = level()

// 2) Put a key & value
db.put('name', 'Level', function (err) {
  if (err) return console.log('Ooops!', err) // some kind of I/O error

  // 3) Fetch by key
  db.get('name', function (err, value) {
    if (err) return console.log('Ooops!', err) // likely the key was not found

    // Ta da!
    console.log('name=' + value)
  })
})

See levelup and memdown for more details.

Contributing

level-mem is an OPEN Open Source Project. This means that:

Individuals making significant and valuable contributions are given commit-access to the project to contribute as they see fit. This project is more like an open wiki than a standard guarded open source project.

See the CONTRIBUTING.md file for more details.

License

Copyright (c) 2012-2018 level-mem contributors.

level-mem is licensed under the MIT license. All rights not explicitly granted in the MIT license are reserved. See the included LICENSE.md file for more details.