Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.216.250
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
nodejs /
npm /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
commands
[ DIR ]
drwxr-xr-x
2024-07-10 10:56
utils
[ DIR ]
drwxr-xr-x
2024-07-10 10:56
workspaces
[ DIR ]
drwxr-xr-x
2024-07-10 10:56
arborist-cmd.js
1.03
KB
-rw-r--r--
2023-11-23 07:39
base-command.js
2.97
KB
-rw-r--r--
2023-11-23 07:39
cli.js
5.21
KB
-rw-r--r--
2023-11-23 07:39
lifecycle-cmd.js
503
B
-rw-r--r--
2023-11-23 07:39
npm.js
14.67
KB
-rw-r--r--
2023-11-23 07:39
package-url-cmd.js
1.94
KB
-rw-r--r--
2023-11-23 07:39
Save
Rename
// The implementation of commands that are just "run a script" // restart, start, stop, test const BaseCommand = require('./base-command.js') class LifecycleCmd extends BaseCommand { static usage = ['[-- <args>]'] static isShellout = true async exec (args, cb) { return this.npm.exec('run-script', [this.constructor.name, ...args]) } async execWorkspaces (args, filters, cb) { return this.npm.exec('run-script', [this.constructor.name, ...args]) } } module.exports = LifecycleCmd