Search and view users via the Github API - http://www.githubusersearch.zz.am
Requests are cached in session storage to limit the use of the API.
A personal project built with React, Redux and other tools to search users and view their profiles on Github.
- Create an instance on EC2
- install nodejs, npm, yarn
- Clone the repository with git command
- Install dependences
yarn
- Run the server
yarnpkg run start
- Visit
http://[aws public DNS that you create]:3001/github-user-search/
(note the trailing slash)
- Clone the repository
- Open dev.config.js and Remove line 12(host : '0.0.0.0',)
- Install dependences
yarn
- Run the server
yarnpkg run start
- Visit
http://localhost:3001/github-user-search/
(note the trailing slash)
When running the app, you can export a personal access token and this will be sent along in any API calls to increase the limit:
export USER_SEARCH_OAUTH=<your token>
yarnpkg run start