level-prebuilt

0.18.0-3 • Public • Published

level-prebuilt

This is the level module but using leveldown-prebuilt to avoid leveldb compilation at install time

The original level readme follows:

LevelDB Logo

Fast & simple storage - a Node.js-style LevelDB wrapper

Build Status

NPM NPM

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

Use this package to avoid having to explicitly install LevelDOWN when you just want plain old LevelDB from LevelUP.

var level = require('level')
 
// 1) Create our database, supply location and options.
//    This will create or open the underlying LevelDB store.
var db = level('./mydb')
 
// 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 LevelDOWN for more details.

Contributing

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

Contributors

Level, including LevelUP & LevelDOWN, is only possible due to the excellent work of the following contributors:

Rod VaggGitHub/rvaggTwitter/@rvagg
John ChesleyGitHub/cheslesTwitter/@chesles
Jake VerbatenGitHub/raynosTwitter/@raynos2
Dominic TarrGitHub/dominictarrTwitter/@dominictarr
Max OgdenGitHub/maxogdenTwitter/@maxogden
Lars-Magnus SkogGitHub/ralphtheninjaTwitter/@ralphtheninja
David BjörklundGitHub/keslaTwitter/@david_bjorklund
Julian GruberGitHub/juliangruberTwitter/@juliangruber
Paolo FragomeniGitHub/hij1nxTwitter/@hij1nx
Anton WhalleyGitHub/No9Twitter/@antonwhalley
Matteo CollinaGitHub/mcollinaTwitter/@matteocollina
Pedro TeixeiraGitHub/pgteTwitter/@pgte
James HallidayGitHub/substackTwitter/@substack

License & copyright

Copyright (c) 2012-2014 Level contributors (listed above).

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

Package Sidebar

Install

npm i level-prebuilt

Weekly Downloads

0

Version

0.18.0-3

License

MIT

Last publish

Collaborators

  • jhermsmeier
  • maxogden