make-error

Make your own error types!

ISC 22 个版本
安装
npm install make-error
yarn add make-error
pnpm add make-error
bun add make-error
README

make-error

Package Version Build Status PackagePhobia Latest Commit

Make your own error types!

Features

  • Compatible Node & browsers
  • instanceof support
  • error.name & error.stack support
  • compatible with CSP (i.e. no eval())

Installation

Node & Browserify/Webpack

Installation of the npm package:

> npm install --save make-error

Then require the package:

var makeError = require("make-error");

Browser

You can directly use the build provided at unpkg.com:

<script src="https://unpkg.com/make-error@1/dist/make-error.js"></script>

Usage

Basic named error

var CustomError = makeError("CustomError");

// Parameters are forwarded to the super class (here Error).
throw new CustomError("a message");

Advanced error class

function CustomError(customValue) {
  CustomError.super.call(this, "custom error message");

  this.customValue = customValue;
}
makeError(CustomError);

// Feel free to extend the prototype.
CustomError.prototype.myMethod = function CustomError$myMethod() {
  console.log("CustomError.myMethod (%s, %s)", this.code, this.message);
};

//-----

try {
  throw new CustomError(42);
} catch (error) {
  error.myMethod();
}

Specialized error

var SpecializedError = makeError("SpecializedError", CustomError);

throw new SpecializedError(42);

Inheritance

Best for ES2015+.

import { BaseError } from "make-error";

class CustomError extends BaseError {
  constructor() {
    super("custom error message");
  }
}

Contributions

Contributions are very welcomed, either on the documentation or on the code.

You may:

  • report any issue you've encountered;
  • fork and create a pull request.

License

ISC © Julien Fontanet

版本列表
1.3.6 2020-02-19
1.3.5 2018-08-30
1.3.4 2018-02-15
1.3.3 2018-02-05
1.3.2 2017-12-27
1.3.1 2017-12-27
1.3.0 2017-05-21
1.2.3 2017-03-09
1.2.2 2017-03-01
1.2.1 2016-09-06
1.2.0 2016-07-20
1.1.1 2016-02-09
1.1.0 2016-01-20
1.0.4 2015-10-07
1.0.3 2015-10-06
1.0.2 2015-04-14
1.0.1 2015-04-10
1.0.0 2015-04-10
0.3.0 2014-10-12
0.2.0 2014-10-11
0.1.0 2014-10-11
0.0.0 2014-10-08