This project allows de Bijenkorf to asses potential frontend candidates with real, working code.
It is bootstrapped with Create React App to give you the initial setup.
If you are not familiar with Create React App you can find an up to date guide here.
The initial project structure looks like this:
frontend-assignment/
api/
_search.get.json
exercise-1
exercise-2
exercise-3
public/
favicon.ico
index.html
logo192.png
logo512.png
manifest.json
robots.txt
src/
App.js
App.test.js
index.css
index.js
.gitignore
package.json
README.md
yarn.lock
You may create subdirectories inside src
. For faster rebuilds, only files inside src
are processed by Webpack.
To install project dependencies execute the following command:
yarn
To run the application use the following command:
yarn start
This command will run two scripts concurrently:
react-scripts start
canned -p 5000 ./api/\"
The User Interface should be running on http://localhost:3000/
A dummy API endpoint should be available on the same port.
e.g.
curl -s http://localhost:3000/search
To run tests use the following command:
yarn test
You will find 3 exercises and associated instructions in the separate named folders in the root of this project. This assignment is timeboxed to 8 hours max.
If you have any remarks or observations while working on this assignment you are encouraged submit these along with the assignment.
When you complete the assignment either push your local working copy to a remote repository or email us a .zip file with your solution. Please do not fork this repository.