Skip to content

ObayM/GitStalker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

738962c · · Mar 21, 2026

History

2 Commits
Mar 21, 2026
Mar 21, 2026
Mar 21, 2026
Mar 21, 2026
Mar 21, 2026
Mar 21, 2026
Mar 21, 2026
Mar 21, 2026
Mar 21, 2026
Mar 21, 2026

Repository files navigation

GitStalker

Find your github nerds

This is a fast, nextjs app that lets you search for any github user as fast as possible

How this is optimized?

  1. Debouncing
  • Instead of firing api request for every character you type, we just wait for 500ms and then print the search results
  1. Caching
  • We have a javascript "Map" running outside the react state, so if you search 2 names twice you get instant results

and image optimization as well :)

Tech Stack

  • next.js
  • typescript
  • tailwind css

How to run?

  1. grab the code and install the packages:

    npm install
  2. start the dev server:

    npm run dev