This is a starter project for Node.js applications written in TypeScript. It includes a basic setup with npm scripts for development and production environments.
# install dependencies
$ npm installCreate a .env file in the root directory of the project. This file will be used to set environment variables for the application. The .env file should not be committed to the repository.
# .env
NODE_ENV=development
PORT=3000# watch mode
$ npm run dev
# build production
$ npm run build
# production mode
$ npm run start