A simple Hello World web server built with Express.js and TypeScript, executed using tsx.
- Node.js (v16 or higher)
- npm
Dependencies are already installed. If you need to reinstall:
npm installnpm run devnpm startnpm run build:startGET /- Hello World messageGET /health- Health check endpoint
{
"message": "Hello World!",
"timestamp": "2025-10-16T12:00:00.000Z",
"server": "Express.js with TypeScript"
}The server runs on http://localhost:3000 by default.