• Stars
    star
    117
  • Rank 300,693 (Top 6 %)
  • Language
    TypeScript
  • License
    MIT License
  • Created about 4 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

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

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 [email protected]: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