# nexe_unpacker

> A simple nexe unpacker

Latest version **0.0.5** (published 2022-01-24) · ISC license · 0 weekly downloads

## Install

```sh
npm install nexe_unpacker
pnpm add nexe_unpacker
yarn add nexe_unpacker
bun add nexe_unpacker
```

Provides the command `nexe_unpacker`.

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.5 |
| Published | 2022-01-24 |
| First published | 2022-01-13 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 4 |
| Unpacked size | 92.3 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Benjamin Viguier |
| Maintainers | ben_ |
| Keywords | nexe, unpacker, decompiler, tool, typescript, reverse, macos, linux, windows |

## Links

- npm: https://www.npmjs.com/package/nexe_unpacker
- Repository: https://gitlab.holidev.net/ben/nexe-unpacker
- Homepage: https://gitlab.holidev.net/ben/nexe-unpacker#readme
- npm.io page: https://npm.io/package/nexe_unpacker

## Dependencies (4)

- [yargs](https://npm.io/package/yargs.md) ^17.3.1
- [archiver](https://npm.io/package/archiver.md) ^5.3.0
- [tsyringe](https://npm.io/package/tsyringe.md) ^4.6.0
- [reflect-metadata](https://npm.io/package/reflect-metadata.md) ^0.1.13

## Alternatives

- [@openai/codex-sdk](https://npm.io/package/@openai/codex-sdk.md) — 731.4K weekly downloads
- [babel-plugin-transform-react-jsx](https://npm.io/package/babel-plugin-transform-react-jsx.md) — 565.0K weekly downloads
- [babel-helper-remove-or-void](https://npm.io/package/babel-helper-remove-or-void.md) — 508.5K weekly downloads
- [@pnpm/store-controller-types](https://npm.io/package/@pnpm/store-controller-types.md) — 186.9K weekly downloads
- [react-native-signature-canvas](https://npm.io/package/react-native-signature-canvas.md) — 155.6K weekly downloads

## Recent versions

- 0.0.5 (latest) — 2022-01-24
- 0.0.4 — 2022-01-17
- 0.0.3 — 2022-01-13
- 0.0.2 — 2022-01-13

## README

# NEXE UNPACKER

A simple nodejs script that reverse nexe executable package.

## Install

```bash
npm i -g nexe_unpacker
```

## Usage
```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 help

## How to build ?

```bash
## inside the repo
npm run configure;
npm run build;
```

---
_Source: https://npm.io/package/nexe_unpacker · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
