Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 817 Bytes

File metadata and controls

34 lines (24 loc) · 817 Bytes

Express Server with Typescript & Jest

Getting Started

Run the Express server

npm start

Development

To debug the Express server with auto-restart,

npm run dev:server

To run unit tests (Jest) in watch mode,

npm run dev:tdd

With VS Code

  • debug the server with Attach to Server
  • debug the test with Attach to Jest

Screen Shot 2019-10-11 at 4 06 48 AM

Refs