Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 756 Bytes

README.md

File metadata and controls

25 lines (18 loc) · 756 Bytes

Interview starting project (JavaScript)

The purpose of this repository is give interview candidates a starting point for the pair programming exercises.

Prerequisites

Frontend

The frontend is scaffolded using create-react-app with some slight modifications.

$ cd frontend
$ npm install
$ npm start

Backend

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