This code challenge tests your frontend skills.
We really really urgently need a sweet list of your public GitHub Repos, but someone left it half finished! Oh no! Your task is to:
- Read this
README
- Install deps with
yarn
ornpm install
. We usually useyarn
. - Create a MVP of the repo list (hint: check
// @TODO:s
) - Make sure that the tests pass (
yarn test
) - (If you are applying for a job) Submit your work to us (See ../../README.md) and we will discuss it in the next interview!
- Can show a initial list of the repositories the user has, including:
- Link to the repo
- Name of the repo
- Description
- Language
- Can paginate through all the repositories by pressing a
Load more
button - Tests pass
Should look something like this:
There's also a Figma layout for it.
-
This project was bootstrapped with Create React App, so if you are familiar with CRA, you are in luck! Otherwise you might want to get familiar with it first.
-
The tests are done with Jest and Enzyme, but you can use plain React TestUtilities or something like
react-testing-library
too. -
You'll need a GitHub account to get the API token. See settings/tokens.
-
The project uses
styled-components
for the CSS(-in-js), because most of our projects have also used it. Same withredux
andredux-thunk
, but you can get rid of both or replace them with some other state management system you want to. -
You will find that the project is really incomplete, as in it might actually be completely broken, but that's expected. Debugging is part of the job and ask for help if you get stuck.
-
This project uses our styleguide, which might not fit 100% to your current coding style. Not to worry, we are quite flexible with it and formatting is handled by Prettier in pre-commit phase.
We use lots of GraphQL these days, mainly with Apollo. Document how you would do the app if it was using GraphQL. If you are really feeling wild, implement it!
Below you will find some information on how to perform common tasks.
You can find the most recent version of the full guide guide here.
In the project directory, you can run:
Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.
The page will reload if you make edits.
You will also see any lint errors in the console.
Launches the test runner in the interactive watch mode.
See the section about running tests for more information.
Builds the app for production to the build
folder.
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.
Your app is ready to be deployed!
See the section about deployment for more information.
Note: this is a one-way operation. Once you eject
, you can’t go back!
If you aren’t satisfied with the build tool and configuration choices, you can eject
at any time. This command will remove the single build dependency from your project.
Instead, it will copy all the configuration files and the transitive dependencies (Webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except eject
will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
You don’t have to ever use eject
. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.