Skip to main content
Module

x/denon/docs/installation.md

👀 Monitor any changes in your Deno application and automatically restart.
Very Popular
Go to Latest
File

title: Installation

import Tabs from ‘@theme/Tabs’; import TabItem from ‘@theme/TabItem’;

To install denon simply enter the following into a terminal:

deno install -qA -f --unstable https://deno.land/x/denon@2.3.2/denon.ts
deno install -qA -f --unstable https://x.nest.land/denon@2.3.2/denon.ts

Autocompletion

In zsh, you can install autocompletion with:

echo '. <(denon --completion)' >> ~/.zshrc

In bash:

denon --completion >> ~/.config/denon.completion.sh
echo 'source ~/.config/denon.completion.sh' >> ~/.bash_profile

In fish:

echo 'denon --completion-fish | source' >> ~/.config/fish/config.fish