# Installing Deno Runtime

Mandarine.TS is a framework that runs on [**Deno**](https://deno.land/) which in order to use Mandarine.TS, you need to have installed [Deno](https://deno.land/) in your computer.

### What is Deno?

From Deno official website:

> Deno is a simple, modern and secure runtime for JavaScript and TypeScript that uses V8 and is built in Rust.

### How can I install Deno?

From Deno official website:

> Deno ships as a single executable with no dependencies. You can install it using the installers below, or download a release binary from the [releases page](https://github.com/denoland/deno/releases).

#### Shell (Mac, Linux):

```
curl -fsSL https://deno.land/x/install/install.sh | sh
```

#### PowerShell (Windows):

```
iwr https://deno.land/x/install/install.ps1 -useb | iex
```

#### [Homebrew](https://formulae.brew.sh/formula/deno) (Mac):

```
brew install deno
```

#### [Chocolatey](https://chocolatey.org/packages/deno) (Windows):

```
choco install deno
```

#### Scoop (Windows):

```
scoop install deno
```

#### Build and install from source using [Cargo](https://crates.io/crates/deno)

```
cargo install deno
```
