Skip to content
This repository was archived by the owner on Dec 20, 2024. It is now read-only.
/ level-hyper Public archive

Discontinued. A convenience package bundling levelup and leveldown-hyper.

License

Notifications You must be signed in to change notification settings

Level/level-hyper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

3b471c5 · Dec 20, 2024

History

82 Commits
Jul 17, 2018
Oct 6, 2019
Sep 6, 2019
Jan 7, 2019
Jan 5, 2019
Dec 20, 2024
Jan 5, 2019
Jul 1, 2018
Sep 6, 2019
Jun 21, 2018

Repository files navigation

level-hyper

Discontinued.


This is a convenience package that bundles the current release of levelup and leveldown-hyper and exposes levelup on its export.

Use this package to avoid having to explicitly install leveldown-hyper when you want to use leveldown-hyper with levelup.

If you are upgrading: please see UPGRADING.md.

Usage

Basic usage for putting and getting data:

var level = require('level-hyper')

// 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)
  })
})

The .liveBackup() method is accessible on the underlying leveldown-hyper object:

var level = require('level-hyper')
var db = level('./mydb')
db.on('ready', function () {
  var name = String(Date.now())
  db.db.liveBackup(name, function (err) {
    if (!err) console.log('backup to %s was successful', name)
  })
})

See levelup and leveldown-hyper for more details.

Contributing

Level/level-hyper 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.

License

MIT © 2012-present Contributors.

About

Discontinued. A convenience package bundling levelup and leveldown-hyper.

Resources

License

Code of conduct

Stars

Watchers

Forks

Sponsor this project