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
- Host: GitHub
- URL: https://github.com/jaay7/first-deno-app
- Owner: Jaay7
- Created: 2022-01-29T08:59:28.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-02-05T13:57:12.000Z (over 4 years ago)
- Last Synced: 2025-07-03T09:42:23.857Z (12 months ago)
- Topics: aws-dynamodb, deno, rest-api, typescript
- Language: TypeScript
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```