exec-ignore-errors
v1.0.3
Published
Run command ignoring errors.
Downloads
74
Maintainers
Readme
exec-ignore-errors
Run a CLI command ignoring any errors. This package is useful when you run a command and cannot make sure it works correctly, but you don‘t want anything else to be interrupted.
Installation
npm i exec-ignore-errors
Example
Use this in the shell.
exec-ignore-errors node 1.js
Use this in the npm script.
{
"scripts": {
"start": "exec-ignore-errors node 1.js"
}
}