A TypeScript starter template with Nodemon for automatic reloading and Express.js.
- TypeScript: Type-safe JavaScript with static type checking.
- Nodemon: Automatic server reloading during development.
- Express.js: Minimal and flexible Node.js web application framework.
- dotenv: Environment variable management.
Ensure you have the following installed:
To use ts-nodemon-starter
in your project, follow these steps:
-
Install the package
npm install ts-nodemon-starter
-
Add a
.env
FileCreate a
.env
file in your project's root directory to manage environment variables:touch .env
-
Development Start the development server with automatic reloading:
npm run dev
-
Build Compile TypeScript files to JavaScript:
npm run build
-
Start Run the compiled application:
npm start
For any questions or feedback, please open an issue in the repository.