Linux 162-55-97-189.cprapid.com 5.14.0-687.24.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Jul 9 18:14:06 EDT 2026 x86_64
LiteSpeed
Server IP : 162.55.97.189 & Your IP : 216.73.216.182
Domains :
Cant Read [ /etc/named.conf ]
User : kavci
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
cpanel /
ea-nodejs18 /
lib /
node_modules /
npm /
bin /
Delete
Unzip
Name
Size
Permission
Date
Action
node-gyp-bin
[ DIR ]
drwxr-xr-x
2026-07-09 10:32
npm
2.02
KB
-rwxr-xr-x
2026-05-18 16:40
npm-cli.js
69
B
-rwxr-xr-x
2026-05-18 16:40
npm-prefix.js
849
B
-rwxr-xr-x
2026-05-18 16:40
npm.cmd
538
B
-rw-r--r--
2026-05-18 16:40
npx
2.02
KB
-rwxr-xr-x
2026-05-18 16:40
npx-cli.js
2.87
KB
-rwxr-xr-x
2026-05-18 16:40
npx.cmd
538
B
-rw-r--r--
2026-05-18 16:40
Save
Rename
#!/opt/cpanel/ea-nodejs18/bin/node // This is a single-use bin to help windows discover the proper prefix for npm // without having to load all of npm first // It does not accept argv params const path = require('node:path') const Config = require('@npmcli/config') const { definitions, flatten, shorthands } = require('@npmcli/config/lib/definitions') const config = new Config({ npmPath: path.dirname(__dirname), // argv is explicitly not looked at since prefix is not something that can be changed via argv argv: [], definitions, flatten, shorthands, excludeNpmCwd: false, }) async function main () { try { await config.load() // eslint-disable-next-line no-console console.log(config.globalPrefix) } catch (err) { // eslint-disable-next-line no-console console.error(err) process.exit(1) } } main()