The main purpose of this repository is to quickly create a template for Resful project which uses Typescript and Express.js framework. I will try to keep this as up-to-date as possible, but community contributions and recommendations for improvements are encouraged and will be most welcome.
To build and run this app locally you will need a few things:
- Install Node.js
- Install VS Code
- Install [Typescript] (https://www.typescriptlang.org/index.html#download-links)
- Clone the repository
git clone --depth=1 https://github.com/tuanlc/typescript-expressjs-template.git <project_name>
- Install dependencies
cd <project_name>
npm install
- Build and run the project
npm run build
npm start