Skip to content
This repository has been archived by the owner on Jun 1, 2019. It is now read-only.

lostintime/express-ts-seed

Repository files navigation

Express TypeScript API Seed

Restful API seed project, using express and typescript.

Getting Started

1. Clone project

git clone --depth 1 git@github.com:lostintime/express-ts-seed.git

Or using https:

git clone --depth 1 https://github.com/lostintime/express-ts-seed.git

then enter project folder

cd express-ts-seed

2. Install dependencies

npm install

3. Build

gulp build

4. Run

node dist/index.js

Check it in browser at http://localhost:3000/.

5. Add own remote

git remote rm origin
git remote add origin <put youre remoteurl here>