Linux ih01.iridiumhosting.com 5.14.0-611.55.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 19 15:19:29 EDT 2026 x86_64
LiteSpeed
Server IP : 67.227.241.211 & Your IP : 216.73.217.111
Domains :
Cant Read [ /etc/named.conf ]
User : dustinhy
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
cpanel /
ea-nodejs16 /
lib /
node_modules /
npm /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
auth
[ DIR ]
drwxr-xr-x
2026-05-22 12:12
commands
[ DIR ]
drwxr-xr-x
2026-05-22 12:12
utils
[ DIR ]
drwxr-xr-x
2026-05-22 12:12
workspaces
[ DIR ]
drwxr-xr-x
2026-05-22 12:12
arborist-cmd.js
627
B
-rw-r--r--
2026-04-30 15:16
base-command.js
2.81
KB
-rw-r--r--
2026-04-30 15:16
cli.js
3.36
KB
-rw-r--r--
2026-04-30 15:16
lifecycle-cmd.js
503
B
-rw-r--r--
2026-04-30 15:16
npm.js
13.25
KB
-rw-r--r--
2026-04-30 15:16
package-url-cmd.js
1.88
KB
-rw-r--r--
2026-04-30 15:16
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