https://github.com/morpa/deno-api
https://github.com/morpa/deno-api
deno rest-api
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/morpa/deno-api
- Owner: Morpa
- Created: 2020-05-20T14:09:02.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-20T14:10:30.000Z (about 6 years ago)
- Last Synced: 2025-10-07T06:50:09.354Z (9 months ago)
- Topics: deno, rest-api
- Language: TypeScript
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# Deno REST API
> This is a simple REST API using Deno and Oak. I will be adding database functionality and JWT to it in the near future
## Run
```
deno run --allow-net server.ts
```
## Routes
```
GET /api/products
GET /api/products/:id
POST /api/products
PUT /api/products/:id
DELETE /api/products/:id
```