Socket
Socket
Sign inDemoInstall

level-mem

Package Overview
Dependencies
21
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
855 kB
Created
Weekly downloads
 

Changelog

Source

[1.0.1] - 2017-10-04

Changed

  • Upgrade memdown to ~1.4.1 (@ralphtheninja)

Readme

Source

level-mem

LevelDB Logo

A convenience package bundling LevelUP & MemDOWN

NPM

Build Status Greenkeeper badge

This is a convenience package that bundles the current release of LevelUP and MemDOWN and exposes LevelUP on its export.

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

var level = require('level-mem')

// 1) Create our database, supply location and options.
//    This will create or open the underlying LevelDB store.
var db = level('w00t')

// 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.

Copyright (c) 2012-2017 Rod Vagg contributors (listed above).

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

Keywords

FAQs

Last updated on 04 Oct 2017

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