This is a base project for Node.js using TypeScript. It provides a starting point for building Node.js applications with TypeScript support.
- Clone the repository:
git clone https://github.com/igordev96/base-project-node-ts.git
- Navigate to the project directory:
cd project-name
- Install dependencies:
npm install
- Run
npm run dev
to watch changes to ts files (hot reload) - Start the application:
npm run start
- Build the TypeScript code:
npm run build
- Lint the code using BiomeJS (linter built with Rust):
npm run lint
- TypeScript support for better code maintainability and scalability.
- Easily customizable for specific project requirements.
- Includes basic configuration files (tsconfig.json, package.json, etc.).
Contributions are welcome! If you'd like to contribute to this project, please follow these steps:
- Fork the repository.
- Create a new branch (
git checkout -b feature/your-feature-name
). - Make your changes.
- Commit your changes (
git commit -am 'Add some feature'
). - Push to the branch (
git push origin feature/your-feature-name
). - Create a new Pull Request.
This project is licensed under the MIT License.
Feel free to customize this template according to your project's specifics!