Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.129.71.225
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
node_modules /
whet.extend /
Delete
Unzip
Name
Size
Permission
Date
Action
lib
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
src
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
test
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
.npmignore
24
B
-rw-r--r--
2013-01-27 21:37
.travis.yml
46
B
-rw-r--r--
2012-06-30 08:29
Cakefile
1.48
KB
-rw-r--r--
2013-01-27 21:37
History.md
513
B
-rw-r--r--
2013-01-27 21:37
LICENSE
1.03
KB
-rw-r--r--
2012-05-24 14:22
Readme.md
507
B
-rw-r--r--
2012-05-24 15:14
index.js
48
B
-rw-r--r--
2012-06-21 10:53
package.json
1.49
KB
-rw-r--r--
2021-02-04 21:24
Save
Rename
fs = require 'fs' CoffeeScript = require 'coffee-script' {spawn, exec} = require 'child_process' # ANSI Terminal Colors. enableColors = no unless process.platform is 'win32' enableColors = not process.env.NODE_DISABLE_COLORS bold = red = green = reset = '' if enableColors bold = '\x1B[0;1m' red = '\x1B[0;31m' green = '\x1B[0;32m' reset = '\x1B[0m' ### Just proc extender ### proc_extender = (cb, proc) => proc.stderr.on 'data', (buffer) -> console.log "#{buffer}" # proc.stdout.on 'data', (buffer) -> console.log "#{buffer}".info proc.on 'exit', (status) -> process.exit(1) if status != 0 cb() if typeof cb is 'function' null # Run a CoffeeScript through our node/coffee interpreter. run_coffee = (args, cb) => proc_extender cb, spawn 'node', ['./node_modules/.bin/coffee'].concat(args) # Run a mocha tests run_mocha = (args, cb) => proc_extender cb, spawn 'node', ['./node_modules/.bin/mocha'].concat(args) # Log a message with a color. log = (message, color, explanation) -> console.log color + message + reset + ' ' + (explanation or '') task 'build', 'build module from source', build = (cb) -> files = fs.readdirSync 'src' files = ('src/' + file for file in files when file.match(/\.coffee$/)) run_coffee ['-c', '-o', 'lib/'].concat(files), cb log ' -> build done', green task 'test', 'test builded module', -> build -> test_file = './test/extend_test.coffee' run_mocha test_file, -> log ' -> all tests passed :)', green