Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 829 Bytes

README.md

File metadata and controls

29 lines (24 loc) · 829 Bytes

Express TypeScript template

This is a customised version of the template.

  • Dockernizable
  • Logging using winston
  • Database connection to postgresql using pg-promise
  • Testing using mocha/chai/ndb
  • Async handler for async/await syntax
cd to your project.
curl -vL https://api.github.com/repos/SpatialVision/express-ts-template/tarball/develop | \
tar xfz - && DIR=`ls |grep SpatialVision` && mv $DIR/* .; mv $DIR/.* .; rm -fr $DIR

Pre-reqs

npm run build
npm start

Navigate to http://localhost:3000


Based on TypeScript Node Starter and Express Generator