Linux tr1.turkishost.com 5.14.0-570.52.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 15 06:39:08 EDT 2025 x86_64
LiteSpeed
Server IP : 194.146.50.96 & Your IP : 10.1.37.156
Domains :
Cant Read [ /etc/named.conf ]
User : lakemima
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
node_modules /
npm /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
auth
[ DIR ]
drwxr-xr-x
2025-07-11 01:40
commands
[ DIR ]
drwxr-xr-x
2025-07-11 01:40
utils
[ DIR ]
drwxr-xr-x
2025-07-11 01:40
workspaces
[ DIR ]
drwxr-xr-x
2025-07-11 01:40
arborist-cmd.js
627
B
-rw-r--r--
2023-08-09 01:32
base-command.js
2.81
KB
-rw-r--r--
2023-08-09 01:32
cli.js
3.36
KB
-rw-r--r--
2023-08-09 01:32
lifecycle-cmd.js
503
B
-rw-r--r--
2023-08-09 01:32
npm.js
13.25
KB
-rw-r--r--
2023-08-09 01:32
package-url-cmd.js
1.88
KB
-rw-r--r--
2023-08-09 01:32
Save
Rename
// This is the base for all commands whose execWorkspaces just gets // a list of workspace names and passes it on to new Arborist() to // be able to run a filtered Arborist.reify() at some point. const BaseCommand = require('./base-command.js') class ArboristCmd extends BaseCommand { get isArboristCmd () { return true } static params = [ 'workspace', 'workspaces', 'include-workspace-root', 'install-links', ] static ignoreImplicitWorkspace = false async execWorkspaces (args, filters) { await this.setWorkspaces(filters) return this.exec(args) } } module.exports = ArboristCmd