You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+34-6Lines changed: 34 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,23 +4,51 @@
4
4
5
5
DenoX is a script runner and workspace wrapper for Deno
6
6
7
-
In a similar fashion to `package.json` in NodeJS, you can specify a list of scripts and their respective permissions.
7
+
Using DenoX, you can set up your deno workspace scripts permissions and options in declarative code.
8
8
9
-
Instead of having to rely on `--allow-all` due to the tedious task of rewriting all your permissions in the shell, you can now write your permissions once in a `deno-workspace` file.
9
+
In short, it allows you to to replace having to write this all the time:
10
10
11
-
## Installation
11
+
```bash
12
+
$ deno run --allow-read --allow-write --allow-net main.ts
0 commit comments