Skip to content

Latest commit

 

History

History
31 lines (16 loc) · 1.42 KB

README.md

File metadata and controls

31 lines (16 loc) · 1.42 KB

GitHub Finder

A small app build with React that lets you search for any GitHub user and check out his public information. This app uses the Context API for state management-

This application was bootstrapped with Create React App. Visit the Create React App documentation for more information about the bootstrapping process and scripts create-react-app offers.

You can check out the live project by clicking here.

Installation

Clone this repository onto your local machine and then install all dependencies using the NPM package manager by running this command in your CLI from the repo root directory:

npm install

After all dependencies have been installed you can run the app locally in development mode or you can built out the static assets to deploy them on any webserver.

Run the app in development mode

After installing all dependencies you can run the app on the webpack dev server by running the following command:

npm start

Open http://localhost:3000 to view it in the browser.

Build a deployment-ready production build

Run this command to build out all of the static assets required for a production deployment:

npm run build

See this official documentation for more information.