A simple nexe unpacker
A simple nodejs script that reverse nexe executable package.
``bash`
npm i -g nexe_unpacker
bash
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 --archive is __on__)
- --out="$path", -o "$path : the output path (file if --archive is __on__)
- --archive, -a : write output inside an archive (.zip)
- --compressionLevel=$level, -c $level : compression level (only when --archive is __on__)
- --verbose, -v : print additional logs. (-vv for debug logs)
- --help : print helpHow to build ?
`bash
inside the repo
npm run configure;
npm run build;
``