Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sigmasd/minimize-deno

Find all the permissions used by a Deno program
https://github.com/sigmasd/minimize-deno

deno permissions

Last synced: 3 months ago
JSON representation

Find all the permissions used by a Deno program

Awesome Lists containing this project

README

        

# Minimize

Find all the permissions used by a Deno program

## Usage

```sh
deno run -A --unstable-ffi jsr:@sigma/minimize my-deno-program.ts
```

## How it works

- It runs the file with `deno run`
- Says yes to every prompt
- Prints all discovered permissions

## Tips

The output can be customized with `OUTPUT` env variable, values are `default`,
`json`, `none`

Original python version https://github.com/sigmaSd/Minimize