Deno CRUD REST API using Oak
A simple CRUD REST API example using Deno and Oak
deno run --allow-net server.ts
deno run --allow-net https://raw.githubusercontent.com/FaztWeb/deno-oak-crud-restapi/master/server.ts
Get All users
GET /users
Get a single User by Id
GET /users/:id
Create a new User
POST /products
Update an existing User by Id
PUT /users/:id
Delete an existing User by Id
DELETE /users/:id