This is a simple API that saves contact information of people.
Install global TypeScript and TypeScript Node
npm install -g typescript ts-node
You should install MongoDB on your local machine, or use other services such as mLab or Compose
After that, you will have to replace the mongoURL with your MongoDB address in lib/app.ts
git clone git@github.com:dalenguyen/rest-api-node-typescript.git .
Then install the dependencies
npm install
Run in development mode
npm run dev
Run in production mode
npm run prod
The default URL is: http://localhost:3000
- GET all contacts
Send GET request to http://localhost:3000/contact/
Reference from Lynda.com