An open API service indexing awesome lists of open source software.

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.

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.


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
```