Skip to content

Latest commit

 

History

History
52 lines (37 loc) · 933 Bytes

README.md

File metadata and controls

52 lines (37 loc) · 933 Bytes

Express.js Starter Gnonce

Node.js + Express.js + Typescript = 💖

👩‍💻 Features

  • Using Typescript in src / testing
  • Developer friendly dev-environment with linting & hot-reload
  • Testing using Jest/Supertest
  • Advanced logging using Winston/Morgan

🙏 Installation

npm install

🏃 Running the app

# development
npm run start

# watch mode
npm run start:dev

# production mode
npm run start:prod

✔️ Test

# unit tests
npm run test

# e2e tests
npm run test:e2e

# test coverage
npm run test:cov

# unit tests with watcher
npm run test:watch