Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marc2332/deno_inspect
πͺ Analyze or uncompile apps created with Deno.
https://github.com/marc2332/deno_inspect
deno
Last synced: 4 months ago
JSON representation
πͺ Analyze or uncompile apps created with Deno.
- Host: GitHub
- URL: https://github.com/marc2332/deno_inspect
- Owner: marc2332
- License: mit
- Created: 2022-05-22T10:16:41.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-05-22T10:25:44.000Z (over 2 years ago)
- Last Synced: 2024-10-03T08:22:22.270Z (4 months ago)
- Topics: deno
- Language: TypeScript
- Homepage:
- Size: 3.91 KB
- Stars: 15
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE.md
Awesome Lists containing this project
README
# πͺ inspect
Analyze or uncompile apps created with Deno.
## β¨ Install
```shell
deno install -n inspect --allow-write --allow-read https://deno.land/x/inspect/mod.ts
```## π Example
```
deno compile https://github.com/marc2332/deno_inspect/raw/main/example/my_app.ts
inspect analyze my_app.exe
```## π€ Commands
### `inspect analyze`
Analyze the specified binary:
```shell
inspect analyze my_app.exe
```Output:
```sh
{
argv: [],
unstable: false,
seed: null,
permissions: {
allow_env: null,
allow_hrtime: false,
allow_net: null,
allow_ffi: null,
allow_read: null,
allow_run: null,
allow_write: null,
prompt: true
},
location: null,
v8_flags: [],
log_level: null,
ca_stores: null,
ca_data: null,
unsafely_ignore_certificate_errors: null,
maybe_import_map: null,
entrypoint: "file:///C:/Users/mespi/Projects/uncompiler/example/my_app.ts"
}
```### `inspect uncompile`
Generate a binary with the original Deno binary used to create the compiled app:
```
inspect uncompile my_app.exe original_deno.exe
```Made by Marc EspΓn