Socket
Socket
Sign inDemoInstall

level-mem

Package Overview
Dependencies
25
Maintainers
3
Versions
13
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    level-mem

A convenience package bundling LevelUP & MemDOWN


Version published
Weekly downloads
81K
increased by11.15%
Maintainers
3
Install size
1.16 MB
Created
Weekly downloads
 

Changelog

Source

[5.0.0] - 2019-09-06

If you are upgrading: please see UPGRADING.md.

Changed

  • Breaking: Upgrade memdown from ^4.0.0 to ^5.0.0 (#56) (@vweevers)
  • Upgrade hallmark devDependency from ^0.1.0 to ^2.0.0 (#54, #58) (@vweevers)
  • Upgrade standard devDependency from ^12.0.0 to ^14.0.0 (#53, #57) (@vweevers)
  • Upgrade nyc devDependency from ^13.2.0 to ^14.0.0 (#52) (@vweevers)

Readme

Source

level-mem

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

level badge npm Node version Travis Coverage Status JavaScript Style Guide npm Backers on Open Collective Sponsors on Open Collective

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.

If you are upgrading: please see UPGRADING.md.

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 Contribution Guide for more details.

Donate

To sustain Level and its activities, become a backer or sponsor on Open Collective. Your logo or avatar will be displayed on our 28+ GitHub repositories and npm packages. 💖

Backers

Open Collective backers

Sponsors

Open Collective sponsors

License

MIT © 2012-present Contributors.

Keywords

FAQs

Last updated on 06 Sep 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc