Skip to content

Files

Failed to load latest commit information.

Latest commit

 Cannot retrieve latest commit at this time.

History

History

nodejs + typscript

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Node.js TypeScript Express Starter

This repository provides a basic setup for a Node.js TypeScript project with Express.

Installation

Clone the repository or create a new directory:

git clone <repository_url>
cd project-directory

Initialize the project

npm init -y

Install necessary dependencies:

npm install express body-parser
npm install --save-dev nodemon @types/node

Initialize TypeScript configuration:

tsc --init

Usage

Start the TypeScript compiler in watch mode to automatically recompile files:

tsc -w

Run the project using nodemon for automatic server restarts:

npm start

Project Structure

  • src/ - Contains TypeScript source files.
  • dist/ - Compiled JavaScript files (generated automatically by TypeScript).
  • index.ts - Entry point of the application.

Configuration

  • tsconfig.json - TypeScript configuration file.

Contributing

Contributions are welcome! Feel free to open an issue or submit a pull request.

License

This project is licensed under the MIT License.