How to update the Deno Version
Learn, how to update deno to the latest available version using the command line.
Updating the Deno
We can update the currently installed version of deno to the latest version using the following command.
deno upgrade
This above command will download the latest version from the deno releases and replace your current executable with it.
You can also update to a specific version of deno like this.
deno upgrade --version 1.0.5
This command will download a deno version 1.0.5
.