Skip to content
/ express-typescript Public template

Source code for the Building REST API with Express, TypeScript blog post series

License

Notifications You must be signed in to change notification settings

rsbh/express-typescript

Folders and files

NameName
Last commit message
Last commit date

Latest commit

71d7739 · Mar 2, 2022

History

55 Commits
Feb 26, 2021
Feb 20, 2021
Oct 3, 2020
Mar 2, 2022
Feb 14, 2021
Oct 5, 2020
Mar 2, 2022
Mar 2, 2022
Mar 2, 2022
Oct 3, 2020
Mar 6, 2021
Mar 2, 2022
Feb 14, 2021
Mar 2, 2022
Mar 2, 2022
Feb 14, 2021
Dec 22, 2020

Repository files navigation

express-typescript

Source code for the Building REST API with Express, TypeScript blog post series

Post Links

  1. Building REST API with Express, TypeScript and Swagger
  2. Building REST API with Express, TypeScript - Part 2: Docker Setup
  3. Building REST API with Express, TypeScript - Part 3: PostgreSQL and Typeorm
  4. Building REST API with Express, TypeScript - Part 4: Jest and unit testing

Build from source

  1. Clone the repo

    git clone git@github.com:rsbh/express-typescript.git
    cd express-typescript
  2. Install dependencies.

    npm install
  3. Build the production server.

    npm build
  4. Run the server.

    npm start

Build Docker image locally

docker build -t express-typescript .

Run tests

npm test