Socket
Socket
Sign inDemoInstall

level-errors

Package Overview
Dependencies
Maintainers
2
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

level-errors

Error types for LevelUP


Version published
Weekly downloads
574K
increased by5.43%
Maintainers
2
Weekly downloads
 
Created
Source

level-errors

LevelDB Logo

Error module for LevelUP

Build Status Greenkeeper badge

Usage

const levelup = require('levelup')
const errors = levelup.errors

levelup('./db', { createIfMissing: false }, function (err, db) {
  if (err instanceof errors.OpenError) {
    console.log('open failed because expected db to exist')
  }
})

API

.LevelUPError()

Generic error base class.

.InitializationError()

Error initializing the database, like when the database's location argument is missing.

.OpenError()

Error opening the database.

.ReadError()

Error reading from the database.

.WriteError()

Error writing to the database.

.NotFoundError()

Data not found error.

Has extra properties:

  • notFound: true
  • status: 404

.EncodingError()

Error encoding data.

Publishers

Copyright (c) 2012-2017 LevelUP contributors.

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

Keywords

FAQs

Package last updated on 10 Sep 2017

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc