This repository provides a basic setup for a Node.js TypeScript project with Express.
Clone the repository or create a new directory:
git clone <repository_url>
cd project-directory
npm init -y
Install necessary dependencies:
npm install express body-parser
npm install --save-dev nodemon @types/node
Initialize TypeScript configuration:
tsc --init
Start the TypeScript compiler in watch mode to automatically recompile files:
tsc -w
Run the project using nodemon for automatic server restarts:
npm start
src/
- Contains TypeScript source files.dist/
- Compiled JavaScript files (generated automatically by TypeScript).index.ts
- Entry point of the application.
- tsconfig.json - TypeScript configuration file.
Contributions are welcome! Feel free to open an issue or submit a pull request.
This project is licensed under the MIT License.