Skip to content

Starter project with NodeJS and Typescript using Express and TypeORM

Notifications You must be signed in to change notification settings

venturachrisdev/docker-nodejs-typescript-starter

Repository files navigation

Docker, NodeJS/Typescript and TypeORM Starter

Features

  • Docker
  • NodeJS
  • Typescript
  • TypeORM (with Postgres)
  • Clean Architecture

Getting Started

Run in development:

$ yarn watch-debug

with docker:

$ docker-compose up -d

Run in production:

$ run.sh

or

$ yarn build
$ yarn serve

Run linter:

$ yarn tslint

Run tests:

$ yarn test

Run TypeORM migrations:

$ yarn migrate