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

https://github.com/morpa/deno-api


https://github.com/morpa/deno-api

deno rest-api

Last synced: about 1 month ago
JSON representation

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