A simple GitHub user explorer built with React + Vite.
- Search any GitHub user
- View their public repos
- Check followers, repos count, and other stats
| Tech | Version |
|---|---|
| React | 18.x |
| Vite | 5.x |
| Font Awesome | 6.5.1 |
npm install
npm run devOpen http://localhost:5173
Uses the public GitHub REST API:
GET https://api.github.com/users/{username}
GET https://api.github.com/users/{username}/repos
No auth required for basic requests. Rate limit: 60 req/hour.
src/
├── components/
│ ├── Header.jsx
│ ├── Hero.jsx
│ ├── Features.jsx
│ ├── GitHubSearch.jsx
│ ├── JoinProgram.jsx
│ └── Footer.jsx
├── assets/
├── App.jsx
├── App.css
└── main.jsx
npm run buildOutput goes to dist/
Contact: admin@fastdex.space