A minimal Deno CRUD API used as the target repository for the Remote Coding Demo.
GET /items— list all itemsGET /items/:id— get one item (404 if not found)POST /items— create an item ({ name: string })
deno task start# Start the server first, then:
deno task test