Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.35
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html_old /
pigeon /
node_modules /
ws /
Delete
Unzip
Name
Size
Permission
Date
Action
bench
[ DIR ]
drwxr-xr-x
2022-06-27 18:41
bin
[ DIR ]
drwxr-xr-x
2022-06-27 18:41
build
[ DIR ]
drwxr-xr-x
2022-06-27 18:41
doc
[ DIR ]
drwxr-xr-x
2022-06-27 18:41
examples
[ DIR ]
drwxr-xr-x
2022-06-27 18:41
lib
[ DIR ]
drwxr-xr-x
2022-06-27 18:41
src
[ DIR ]
drwxr-xr-x
2022-06-27 18:41
test
[ DIR ]
drwxr-xr-x
2022-06-27 18:41
.npmignore
49
B
-rw-r--r--
2012-02-29 08:49
.travis.yml
65
B
-rw-r--r--
2012-06-13 13:07
History.md
9.39
KB
-rw-r--r--
2012-06-26 18:31
Makefile
700
B
-rw-r--r--
2012-04-28 12:36
README.md
5.26
KB
-rw-r--r--
2012-06-14 13:57
binding.gyp
254
B
-rw-r--r--
2012-06-17 19:59
index.js
325
B
-rw-r--r--
2012-02-29 08:49
install.js
1.43
KB
-rw-r--r--
2012-06-18 07:56
package.json
1.68
KB
-rw-r--r--
2022-06-27 18:41
Save
Rename
var spawn = require('child_process').spawn , exec = require('child_process').exec , tinycolor = require('tinycolor') , fs = require('fs') , version = JSON.parse(fs.readFileSync(__dirname + '/package.json', 'utf8')).version , verbose = process.env['npm_package_config_verbose'] != null ? process.env['npm_package_config_verbose'] === 'true' : false; console.log('[ws v%s]'.blue + ' Attempting to compile blazing fast native extensions.'.green, version); var gyp = exec('node-gyp rebuild', {cwd: __dirname}); gyp.stdout.on('data', function(data) { if (verbose) process.stdout.write(data); }); gyp.stderr.on('data', function(data) { if (verbose) process.stdout.write(data); }); gyp.on('exit', function(code) { if (code !== 0) { console.log('[ws v%s]'.blue + ' Native code compile failed (but the module will still work):'.yellow, version); console.log('[ws v%s]'.blue + ' The native extensions are faster, but not required.'.yellow, version); console.log('[ws v%s]'.blue + ' On Windows, native extensions require Visual Studio and Python.'.yellow, version); console.log('[ws v%s]'.blue + ' On Unix, native extensions require Python, make and a C++ compiler.'.yellow, version); console.log('[ws v%s]'.blue + ' Start npm with --ws:verbose to show compilation output (if any).'.yellow, version); } else { console.log('[ws v%s]'.blue + ' Native extension compilation successful!'.green, version); } process.exit(); });