The purpose of this repository is give interview candidates a starting point for the pair programming exercises.
The frontend is scaffolded using create-react-app with some slight modifications.
$ cd frontend
$ npm install
$ npm start
The backend is a simple Node.js Express API with GET /
and POST /
routes. That uses a package named Nodemon to monitor changes to source code and automatically reload the service - to save time on development.
$ cd backend
$ npm install
$ npm start