Simple and clean node.js starter project with Typescript support
- Clone the repository:
git clone https://github.com/qramilq/node-typescript-boilerplate.git
cd node-typescript-boilerplate- Install dependencies
yarnor
npm install- Start server using commands from Available scripts section
build- transpile TypeScript to ES6,start:dev- starts server (NODE_ENV=development) in watch mode (using nodemon),start:debug- same asstart:dev+ support debugging server,start:prod- starts (NODE_ENV=production) server,