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 /
bin /
Delete
Unzip
Name
Size
Permission
Date
Action
node-gyp-bin
[ DIR ]
drwxr-xr-x
2025-12-31 20:37
npm
2.02
KB
-rwxr-xr-x
2024-04-25 19:00
npm-cli.js
54
B
-rwxr-xr-x
2022-10-11 19:59
npm-prefix.js
834
B
-rwxr-xr-x
2024-07-09 00:04
npm.cmd
538
B
-rwxr-xr-x
2024-04-25 19:00
npm.ps1
763
B
-rw-r--r--
2024-05-09 19:00
npx
2.02
KB
-rwxr-xr-x
2024-04-25 19:00
npx-cli.js
2.85
KB
-rwxr-xr-x
2024-05-09 19:00
npx.cmd
538
B
-rwxr-xr-x
2024-04-25 19:00
npx.ps1
763
B
-rw-r--r--
2024-05-09 19:00
Save
Rename
#!/usr/bin/env 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()