/interview-starting-project-js

This is a JavaScript starting point for our Pair Programming interview questions

Primary LanguageHTML

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