🦕 Dino Runner

Step 1: Setting up an HTTP Server

This is the first step in our Dino Runner game development journey. We'll set up a basic HTTP server using Deno and the Oak framework.

Start by deploying this repository:

Deploy on Deno

Then Clone your newly created repo locally to edit the code

Server Status

Check that everything is working: Health Check Endpoint

Should return: {"status": "ok", "message": "🦕 Stage 1 - Dino server is healthy!"}

Stage 2 Features

🦕

Deno runtime

Modern JavaScript/TypeScript runtime

🌳

Oak middleware

Middleware framework for Deno's HTTP server

🗄️

Static File Serving

Serving HTML, CSS, and JS files

⚙️

API Routing

Basic REST endpoint structure

Ready for Stage 2?

Stage 1 establishes our server foundation. In Stage 2, we'll add:


Go to stage 2