DOKK / manpages / debian 11 / npm / npm-stop.1.en
NPM-STOP(1) NPM-STOP(1)

npm-stop - Stop a package

npm stop [-- <args>]

This runs a predefined command specified in the "stop" property of a package's "scripts" object.

Unlike with npm help start, there is no default script that will run if the "stop" property is not defined.

{

"scripts": {
"stop": "node bar.js"
} }

npm stop
> npm@x.x.x stop
> node bar.js
(bar.js output would be here)

  • npm help run-script
  • npm help scripts
  • npm help test
  • npm help start
  • npm help restart

undefined NaN