Starting template for Node Express API with Typescript
Runs on Node versions >= 10
Install dependencies using npm
npm install
Run the starter Express API using the command
npm run start
ts-node-dev is the Typescript replacement for Nodemon. It allows us to run the ts file directly. This is to avoid having to stop the server to run tsc && node ./index.js
MIT