Attributes
Includes Deno configuration
Repository
Current version released
6 years ago
Dependencies
std
Versions
den
A better deno cli :p A wrapper of deno cli to give some extra features.
den give the possibility to create a deno.json file and execute some pre-defined commands.
{
"cmds": {
"my-ls": "ls",
"start": "deno run --allow-read --allow-net your_script.ts"
}
}You can then run:
den cmdto get the list of commandsden cmd my-lsorden my-lsto execute the commandden cmd my-ls -lorden my-ls -lto execute the command with extra params
You can still run all the commands available in deno, e.g.:
den run your_script.tsden --helpden eval "console.log(30933 + 404)"- …
installation
Use deno installer:
deno install -f --allow-run --allow-read https://raw.githubusercontent.com/apiel/den/master/den.tsTo upgrade run den den upgrade.