Todo App API with Deno KV & Hono
https://kv-todo-client.vercel.app
(T3 Stack)
- Next 13 (Pages)
- Chakra UI
- TailwindCSS
- React Query
If you're using drux
drux dev
or
deno task dev
GET /subject
GET /subject/{{subjectId}}
POST /subject
BODY
{
"title":"subject title"
}
PUT /subject/{{subjectId}}
BODY
{
"title":"new subject title"
}
DELETE /subject
BODY
{
"id":"{{subjectId}}"
}
GET /todo/{{subjectId}}
GET /todo/{{subjectId}}/{{todoId}}
POST /todo/{{subjectId}}
BODY
{
"title":"todo title"
}
PUT /subject/{{subjectId}}
BODY
{
"title":"new todo title"
}
DELETE /todo/{{subjectId}}
BODY
{
"id":"{{todoId}}"
}
drux test
drux bench
You need https://deno.land/x/drux