https://github.com/crispengari/deno-startup
🛹🦼 this repository contains some basics and applications build using deno run-time environment.
https://github.com/crispengari/deno-startup
deno typescript
Last synced: 2 months ago
JSON representation
🛹🦼 this repository contains some basics and applications build using deno run-time environment.
- Host: GitHub
- URL: https://github.com/crispengari/deno-startup
- Owner: CrispenGari
- License: mit
- Created: 2023-04-23T14:30:11.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-05-28T09:03:04.000Z (about 3 years ago)
- Last Synced: 2025-07-03T02:02:52.409Z (12 months ago)
- Topics: deno, typescript
- Language: TypeScript
- Homepage:
- Size: 127 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
### Deno
In this repository we are going to learn how we can use the `deno` runtime environment to create applications with `typescript` using deno.
### Installation
To install `deno` follow the installation guide from their oficial documentation found [here](https://deno.land/manual@v1.32.3/getting_started/installation).
To install `deno` on windows open the `Powershell` as an administrator and run the following command:
```shell
choco install deno
```
### Checking in Deno is installed.
To check if deno is installed run the following command:
```shell
deno -V
```
> Howdy!! if you get the deno version you have successfully install deno in your computer.
### Setting Deno Environment.
I will be using `VSCode`to create my deno application so i need to install the `deno` [extension](https://marketplace.visualstudio.com/items?itemName=denoland.vscode-deno) in vscode. And after installing this extension i will open my `settings.json` in vscode and add the following property:
```json
{
"deno.enabled": true
}
```
After that you can save the `settings.json` and your environment is already `set`.
You can initialize the deno workspace by opening the command pallet in vscode by pressing `ctr` + `shift` + `P` and type the following
```shell
Deno: Initialize Workspace Configuration
```