Linux tsuru-no-tsurugi 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.0.18 & Your IP : 216.73.216.68
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
node_modules /
npm /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
cli
[ DIR ]
drwxr-xr-x
2025-12-31 20:37
commands
[ DIR ]
drwxr-xr-x
2025-12-31 20:37
utils
[ DIR ]
drwxr-xr-x
2025-12-31 20:37
arborist-cmd.js
1.58
KB
-rw-r--r--
2025-03-27 09:29
base-cmd.js
4.37
KB
-rw-r--r--
2025-03-27 09:29
cli.js
215
B
-rw-r--r--
2025-03-27 09:29
lifecycle-cmd.js
551
B
-rw-r--r--
2024-05-09 19:00
npm.js
13.76
KB
-rw-r--r--
2025-03-27 09:29
package-url-cmd.js
1.89
KB
-rw-r--r--
2024-07-09 00:04
Save
Rename
const BaseCommand = require('./base-cmd.js') // The implementation of commands that are just "run a script" // restart, start, stop, test class LifecycleCmd extends BaseCommand { static usage = ['[-- <args>]'] static isShellout = true static workspaces = true static ignoreImplicitWorkspace = false async exec (args) { return this.npm.exec('run-script', [this.constructor.name, ...args]) } async execWorkspaces (args) { return this.npm.exec('run-script', [this.constructor.name, ...args]) } } module.exports = LifecycleCmd