/deno-crud

CRUD APIs using Deno and oak. My first server in Deno.

Primary LanguageTypeScript

deno-crud

Running

deno run --allow-net --allow-env app.ts

API Endpoints

  1. /accounts/:id GET - get account by id.
  2. /accounts POST - create a new account.
  3. /accounts/:id PUT - update account.
  4. /orders GET - get all orders.
  5. /orders POST - create a new orders.
  6. /orders/:id PUT - update orders.
  7. /items GET - get all items.
  8. /items POST - create a new item.
  9. /items/:id PUT - update item.