Back to directory
ehmicky avatar
ehmicky / set-error-message

set-error-message

Properly update an error's message.

4

Stars

0

Forks

1

Watchers

MIT

License

Node Browsers TypeScript Codecov Minified size Mastodon Medium

Properly update an error's message.

In V8 (Chrome, Node.js, Deno, etc.), error.stack includes error.message. However, if error.message is modified, error.stack might not be updated and still contain the previous message.

This library fixes it by setting error.message while updating error.stack accordingly. This works on any JavaScript engine.

Example

Without set-error-message:

const error = new Error('one')
console.log(error.message) // 'one'
console.log(error.stack) // 'Error: one ...'

error.message = 'two'
console.log(error.message) // 'two'
console.log(error.stack) // 'Error: one ...'

With set-error-message:

import setErrorMessage from 'set-error-message'

const error = new Error('one')
console.log(error.message) // 'one'
console.log(error.stack) // 'Error: one ...'

setErrorMessage(error, 'two')
console.log(error.message) // 'two'
console.log(error.stack) // 'Error: two ...'

Install

npm install set-error-message

This package works in both Node.js >=18.18.0 and browsers.

This is an ES module. It must be loaded using an import or import() statement, not require(). If TypeScript is used, it must be configured to output ES modules, not CommonJS.

API

setErrorMessage(error, newMessage)

error Error | any
newMessage string
Return value: Error

Sets error.message = newMessage.

Returns error. If error is not an Error instance, it is converted to one.

Support

For any question, don't hesitate to submit an issue on GitHub.

Everyone is welcome regardless of personal background. We enforce a Code of conduct in order to promote a positive and inclusive environment.

Contributing

This project was made with ❤️. The simplest way to give back is by starring and sharing it online.

If the documentation is unclear or has a typo, please click on the page's Edit button (pencil icon) and suggest a correction.

If you would like to help us fix a bug or add a new feature, please check our guidelines. Pull requests are welcome!

Releases

Mar 29, 2025

v3.0.1

Download .zip

Documentation

Improve documentation in README.md

Oct 28, 2023

v3.0.0

Download .zip

Breaking changes

Minimal supported Node.js version is now 18.18.0

May 14, 2023

v2.0.1

Download .zip

Dependencies

Upgrade internal dependencies

May 13, 2023

v2.0.0

Download .zip

Breaking changes

Minimal supported Node.js version is now 16.17.0

Nov 21, 2022

Release 1.6.0

Download .zip

Documentation

Undocument third argument