A simple Express.js server built with TypeScript.
Install dependencies:
npm installRun in development mode with hot reload:
npm run devBuild the project:
npm run buildStart the production server:
npm startRun type checking without building:
npm run type-check.
├── src/
│ └── server.ts # Main server file
├── dist/ # Compiled JavaScript (generated)
├── package.json
├── tsconfig.json
└── README.md