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-ts
Install dependencies:
npm install
Build this project:
# Build one
npm run Build
# Build and watch for changes
npm run build -- --watch
Start the Express.js app at port 9000
:
npm start
Now the app is available at http://localhost:9000
.