table of contents
other versions
- bullseye 7.5.2+ds-2
- bullseye-backports 8.5.5~ds1-1~bpo11+1
- testing 9.1.3~ds1-1
- unstable 9.2.0~ds1-1
NPM-STOP(1) | General Commands Manual | NPM-STOP(1) |
NAME¶
npm-stop
Synopsis¶
<!-- AUTOGENERATED USAGE DESCRIPTIONS -->
Description¶
This runs a predefined command specified in the "stop"
property of a
package's "scripts" object.
Unlike with npm start, there is no default script
that will run if the "stop" property is not
defined.
Example¶
{
"scripts": {
"stop": "node bar.js"
} }
npm stop > npm@x.x.x stop > node bar.js (bar.js output would be here)
Configuration¶
<!-- AUTOGENERATED CONFIG DESCRIPTIONS -->
See Also¶
- npm run-script
- npm scripts
- npm test
- npm start
- npm restart
December 2022 | 9.2.0 |