0.0.5 • Published 4 years agoCLI
nexe_unpacker
Licence
ISC
Version
0.0.5
Deps
4
Size
92 kB
Vulns
0
Weekly
0
NEXE UNPACKER
A simple nodejs script that reverse nexe executable package.
Install
npm i -g nexe_unpacker
Usage
cat "the/file/you/want/to/unpack" | nexe_unpacker --stdin
## or
nexe_unpacker "the/file/you/want/to/unpack" "the/file/you/want/to/unpack2" "...n"
Parameters
--stdin: tell the unpacker that target file has to be readen from the standard input--stdout: tell the unpacker to write the archive into the standard output (only when--archiveis on)--out="$path", -o "$path: the output path (file if--archiveis on)--archive, -a: write output inside an archive (.zip)--compressionLevel=$level, -c $level: compression level (only when--archiveis on)--verbose, -v: print additional logs. (-vvfor debug logs)--help: print help
How to build ?
## inside the repo
npm run configure;
npm run build;