https://github.com/tricked-dev/deno-zsh-plugin
https://github.com/tricked-dev/deno-zsh-plugin
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tricked-dev/deno-zsh-plugin
- Owner: Tricked-dev
- License: apache-2.0
- Created: 2022-05-06T08:40:23.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-05-06T08:47:35.000Z (almost 4 years ago)
- Last Synced: 2025-03-05T23:44:43.523Z (about 1 year ago)
- Language: Shell
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Deno zsh plugin
Automatically installs deno to `$HOME/.deno` on startup if deno is not already installed
## Installing
### Zinit
zinit load Tricked-dev/deno-zsh-plugin
## Completions
For completions i would recomend you use [NotTheDr01ds/zsh-plugin-deno](https://github.com/NotTheDr01ds/zsh-plugin-deno)
## Aliases
The Aliases are forked from [denodev/oh-my-zsh-deno](https://github.com/denodev/oh-my-zsh-deno/blob/master/deno.plugin.zsh)
| Alias | Command | Descripton |
| :--------------- | :---------------------- | :------------------------------------------------------------------------- |
| `denoa` | `deno run -A` | Run a program given a filename or url to the module, allow all permissions |
| `denob` | `deno bundle` | Bundle module and dependencies into single file |
| `denoc` | `deno cache` | Cache the dependencies |
| `denod` | `deno doc` | Show documentation for a module |
| `denoe` | `deno eval` | Eval script |
| `denof` | `deno fmt` | Format source files |
| `denoi` | `deno install` | Install script as an executable |
| `denol` | `deno lint` | Lint source files |
| `denor` | `deno run` | Run a program given a filename or url to the module |
| `denot` | `deno test` | Run tests |
| `denoup` | `deno upgrade` | Upgrade deno executable to newest version |
| `to-deno-canary` | `deno upgrade --canary` | Upgrade to deno canary |
| `to-deno-stable` | `deno upgrade` | upgrade to deno stable |