Deployed application on Heroku
Create a service that allows the user to search for a Github username. A successful search should return the username, follower count and the first page of followers' avatars. A "load more" button should fetch the next page of results. The button should no longer display when there are no more pages to fetch.
For the back-end, I created a simple server with Node. I used Webpack to bundle the frontend React code with my transpiled JSX into one Javascript file. I chose to use React on the front-end to dynamically display the returned data from the Github API.
I used Jest/Enzyme for my testing framework. I don't have a lot of experience testing front end code with Jest & Enzyme, so my testing could use improvement.
I decided to eager load the next page of user followers, so that clicking the "load more" button would feel a bit snappier.
I also implemented the ability to click on a follower avatar to see that user and their followers. If you click on a searched user's profile name, it loads their Github page.
I used a simple flexbox layout for this application with a fixed-width sidebar.
The "load more" button is disabled while loading in more followers.
The user can either click "submit" or press enter to submit the contents of the search input field.
I've been working with Node.js for a while and enjoy using it quite a bit. It's especially handy when I'm working with an application that is likely to change and grow more complex over time and will go through multiple iterations. It's highly configurable and is fairly easy to deploy and write tests against.
I chose React because it's a fast and versatile front-end framework that I really enjoy using and can prototype quickly with. In a short time, I was able to build a few components with all the necessary features described in the spec. The application conditionally renders elements like the "load more" button and an error message if the user searches for an invalid username.
If I had more time, I would have written more test coverage against the frontend code. I would have also tested the backend code. I would possibly add additional features like paginating the followers and creating routes with React Router so that user pages could be bookmarked. I would also make it so the browser's back button would load previous states/searches.
I ran into rate-limiting issues with the Github API while testing, which led me to use Basic Auth. Unfortunately, Basic Auth doesn't work when you have 2-factor authentication on your account, which caused requests to 401. Ultimately, for simplicity and the sake of time, I turned off 2FA on my Github account so I could continue to use Basic Auth for accessing the Github API.
A long time ago, I created a fork of GIMP called Gimpshop. Thousands of people have downloaded and used it as an alternative to Adobe Photoshop.
I created a YouTube to MP3 podcast generator called Podcasty. It converts YouTube channels into iTunes-friendly XML feeds.
I wrote several key features and architected the backend for Ynck, a social network for Tattoo enthusiasts.