Express-Typescript with Webpack Starter Template Repository
What it does?
Spins up an express-typescript boilerplate app bundled with webpack, with unit test with jest and supertest
Commands
- build: Builds the Application using webpack.
- start: First Build the app using webpack and then start it using node.
- start:dev: Using the
webpack-shell-plugin-nextbuilds the app in watch mode in parallel with running the app withnodemon - test: Runs unit-tests with
jest. - test:watch: Runs unit-test with
jestin watch mode. - test:coverage: Runs all the tests and generate a
lcov-reportat the end.