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

https://github.com/jaay7/first-deno-app


https://github.com/jaay7/first-deno-app

aws-dynamodb deno rest-api typescript

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

          

# first-deno-app

### Installation

Shell (Mac, Linux):

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

PowerShell (Windows):

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

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

```sh
brew install deno
```

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

```powershell
choco install deno
```

[Scoop](https://scoop.sh/) (Windows):

```powershell
scoop install deno
```

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

```sh
cargo install deno --locked
```

### Running the application

```sh
deno run --allow-env --allow-net --allow-read --allow-write app.ts
```