https://github.com/ibrsec/followers-router
https://github.com/ibrsec/followers-router
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ibrsec/followers-router
- Owner: ibrsec
- Created: 2024-04-24T11:50:53.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-04-24T13:55:34.000Z (about 2 years ago)
- Last Synced: 2025-02-26T07:44:25.101Z (over 1 year ago)
- Language: JavaScript
- Homepage: https://followers-router.vercel.app
- Size: 1.71 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Github Followers App
An awesome Github Followers App with React Router
Explore the docs ยป
View Demo
ยท
Report Bug
ยท
Request Feature
๐ Table of Contents ๐
---
[](https://followers-router.vercel.app/)
---
๐ฆ Used github followers api for github users data
๐ฏ Used React environment, components, use state, use effect hooks, uplifting state, react router dom
๐ฅ First Login to the app
๐ฉ And get github users with pagination and search features
๐ช You can Logout if you want to..!
```sh
# clone the project
git clone https://github.com/ibrsec/followers-router.git
# enter the project directory
cd followers-router
# install dependency
npm install || yarn install
# develop
npm run dev || yarn start
```
```diff
followers-router (folder)
|
|---public (folder)
|
+ |---src (folder)
| |---img (folder)
| |
| |---pages (folder)
| | |---Home.jsx
| | |---About.jsx
| | |---Login.jsx
| | |---NotFound.jsx
| | |---PrivateRoute.jsx
| | โ---UserDetail.jsx
| |
| |---components (folder)
| | |
| | |---Header.jsx
| | |---Navs.jsx
| | |---Followers.jsx
| | |---Pagination.jsx
| | โ---Search.jsx
| |
| |
| |---App.js
| |---App.css
| |---Index.js
| โ---Index.css
|
|----package.json
|----yarn.lock
โ----readme.md
```
---