An Express.js project implemented using Typescript with strongly typed objects:
Clone the repository
npm install
For development:
npm run start
To serve:
npm run serve
Browse to http://localhost:3000
Wow, it works!
npm run nodemon
├── config
│ ├── config.ts
│ └── express.ts
├── controllers
│ └── index.server.controller.ts
├── index.ts
├── public
│ └── stylesheets
│ └── style.css
├── routes
│ └── index.server.route.ts
├── tsconfig.json
└── views
├── error.jade
├── index.jade
└── layout.jade
Typescript will output the compiled code to the dist
folder.
MIT - Do with as you like.