ono (Oh No!)
Throw better errors.
Features
-
Wrap and re-throw an error without losing the original error's message, stack trace, and properties
-
Add custom properties to errors — great for error numbers, status codes, etc.
-
Use format strings for error messages — great for localization
-
Enhanced support for JSON.stringify()
and util.inspect()
— great for logging
-
Create Ono instances for your own custom error classes
-
Tested on Node.js and all modern web browsers on Mac, Windows, and Linux.
Example
const ono = require("ono");
throw ono({ code: "NOT_FOUND", status: 404 }, `Resource not found: ${url}`);
throw ono(originalError, "An error occurred while saving your changes");
throw ono(originalError, { code: 404, status: "NOT_FOUND" });
throw ono(originalError, { code: 404, status: "NOT_FOUND" }, `Resource not found: ${url}`);
throw ono.range(...);
throw ono.syntax(...);
throw ono.reference(...);
const { Ono } = require("ono");
class MyErrorClass extends Error {}
ono.myError = new Ono(MyErrorClass);
throw ono.myError(...);
Installation
Node
Install using npm:
npm install ono
Usage
When using Ono in Node.js apps, you'll probably want to use CommonJS syntax:
const host = require("ono");
When using a transpiler such as Babel or TypeScript, or a bundler such as Webpack or Rollup, you can use ECMAScript modules syntax instead:
import host from "ono";
Browser support
Ono supports recent versions of every major web browser. Older browsers may require Babel and/or polyfills.
To use Ono in a browser, you'll need to use a bundling tool such as Webpack, Rollup, Parcel, or Browserify. Some bundlers may require a bit of configuration, such as setting browser: true
in rollup-plugin-resolve.
API
ono([originalError], [props], [message, ...])
Creates an Error
object with the given properties.
-
originalError
- (optional) The original error that occurred, if any. This error's message, stack trace, and properties will be copied to the new error.
-
props
- (optional) An object whose properties will be copied to the new error. Properties can be anything, including objects and functions.
-
message
- (optional) The error message string. If it contains placeholders, then pass each placeholder's value as an additional parameter. See ono.formatter
for more info.
Specific error types
The default ono()
function always creates Error
objects, but you can use any of the following methods to explicitly create the corresponding Error subclass. The method signatures are exactly the same as above.
ono.formatter
When running in Node.js, the ono.formatter
property is set to the util.format()
function, which let you use placeholders such as %s
, %d
, and %j
. You can provide the values for these when calling ono
or any Ono method:
throw ono("%s is invalid. Must be at least %d characters.", username, minLength);
This is especially useful for localization. Here's a simplistic example:
const errorMessages {
invalidLength: {
en: "%s is invalid. Must be at least %d characters.",
es: "%s no es válido. Debe tener al menos %d caracteres.",
zh: "%s 无效。 必须至少%d个字符。",
}
}
let lang = getCurrentUsersLanguage();
throw ono(errorMessages.invalidLength[lang], username, minLength);
ono.formatter
in web browsers
Web browsers don't have a built-in equivalent of Node's util.format()
function, so format strings are only supported in Node.js by default. However, you can set the ono.formatter
property to any compatible polyfill library to enable this functionality in web browsers too.
Here are some compatible polyfill libraries:
Custom ono.formatter
implementation
If the standard util.format()
functionality isn't sufficient for your needs, then you can set the ono.formatter
property to your own custom implementation. Here's a simplistic example:
function myCustomFormatter(message, ...args) {
for (let [index, arg] of args) {
message = message.replace("$" + index, arg);
}
return message;
}
ono.formatter = myCustomFormatter;
throw ono("$0 is invalid. Must be at least $1 characters.", username, minLength);
Custom Error Classes
Ono has built-in support for all of the built-in JavaScript Error types. For example, you can use ono.reference()
to create a ReferenceError
, or ono.syntax()
to create a SyntaxError
. In addition to the built-in types, you can also create Ono instances for your own custom error classes.
const { ono, Ono } = require("ono");
let counter = 0;
class MyErrorClass extends Error {
constructor(message) {
super(message);
this.id = ++counter;
this.timestamp = new Date();
}
}
ono.myError = new Ono(MyErrorClass);
throw ono.myError({ code: 404, status: "NOT_FOUND" }, `Resource not found: ${url}`);
The code above throws an instance of MyErrorClass
that looks like this:
{
"name": "MyErrorClass",
"message": "Resource not found: xyz.html",
"id": 1,
"timestamp": "2019-01-01T12:30:00.456Z",
"code": 404,
"status": "NOT_FOUND",
"stack": "MyErrorClass: Resource not found: xyz.html\n at someFunction (index.js:24:5)",
}
Contributing
Contributions, enhancements, and bug-fixes are welcome! File an issue on GitHub and submit a pull request.
Building/Testing
To build/test the project locally on your computer:
-
Clone this repo
git clone https://github.com/JS-DevTools/ono.git
-
Install dependencies
npm install
-
Run the build script
npm run build
-
Run the tests
npm test
License
Ono is 100% free and open-source, under the MIT license. Use it however you want.
Big Thanks To
Thanks to these awesome companies for their support of Open Source developers ❤