Express.js with Typescript
Make sure you have Node.js 6 and npm installed.
Clone this repository:
git clone https://github.com/mrpatiwi/express-ts
cd express-tsInstall dependencies:
npm installBuild this project:
# Build one
npm run Build
# Build and watch for changes
npm run build -- --watchStart the Express.js app at port 9000:
npm startNow the app is available at http://localhost:9000.