Simple JSON REST API built with Deno JavaScript Runtime (https://deno.com) and Hono Framework 4.0 (https://hono.dev).
Install Deno Runtime (https://docs.deno.com/runtime/manual/getting_started/installation)
curl -fsSL https://deno.land/install.sh | sh
# Update your .bashrc profile
export DENO_INSTALL="/home/your_username/.deno"
export PATH="$DENO_INSTALL/bin:$PATH"
deno info
deno --version
Copy .env.example
content to .env
deno task dev
deno task serve
deno test
docker build --no-cache -t deno-api .
docker run --rm -it -p 3000:3000 --name deno-api deno-api