Skip to content

Latest commit

 

History

History
40 lines (35 loc) · 528 Bytes

Readme.md

File metadata and controls

40 lines (35 loc) · 528 Bytes

Template Typescript for Express JS

Installation

  • Install dependencies
    > npm i
  • Build server
    > npm run build
  • Run server
    > npm start
  • Server listening on http://127.0.0.1:4000

Development

  • Watch build
    > tsc --watch
  • Run server
    > nodemon dist/server

Heroku Deploy

  • Create app
    > heroku create <app_name>
  • Deploy
    > git add .
    > git commit -m '<message>'
    > git push heroku main