This project is a simple Express.js server written in TypeScript.
The server is started by running the index.ts
file. This file does the following:
- Imports the Express.js module.
- Creates an instance of an Express.js application.
- Sets up a route handler for GET requests made to the root URL (
/
). When a GET request is made to the root URL, the server responds with "Hello World". - Starts the server on port 3005 and logs a message to the console when the server starts.
To start the server, run the following command:
npm start