The dev server may have cached old files. Stop and restart it:
# Stop the current dev server (Ctrl+C)
# Then restart it
npm run dev# Remove node_modules and reinstall
rm -r node_modules
npm install
npm run dev- Open DevTools (F12)
- Go to Application tab
- Clear Local Storage and Session Storage
- Hard refresh (Ctrl+Shift+R or Cmd+Shift+R)
- Open DevTools (F12)
- Go to Console tab
- Look for any error messages
- Share the error message for debugging
These are usually TypeScript cache issues and don't affect runtime. They should disappear after:
- Restarting the dev server
- Waiting a few seconds for TypeScript to recompile
GitHub allows 60 requests/hour without authentication.
Solution:
- Wait an hour before trying again
- Or use a different GitHub username
Possible causes:
- Username doesn't exist
- Repository is private
- Repository was deleted
Solution:
- Double-check the username
- Try a public repository
- Try a popular username like "torvalds" or "gvanrossum"
Possible causes:
- Repository is empty
- Repository has no commits
- API didn't return data
Solution:
- Try a different repository
- Check if the repository has commits on GitHub
-
Check Network Tab
- Open DevTools → Network tab
- Look for failed API requests
- Check response status codes
-
Check Console Errors
- Open DevTools → Console tab
- Look for red error messages
- Note the exact error text
-
Verify API Calls
- Network tab should show requests to
api.github.com - Status should be 200 (success)
- Response should contain data
- Network tab should show requests to
- Username doesn't exist on GitHub
- Check spelling
- Repository is private or deleted
- Try a different repository
- Made too many requests
- Wait an hour or use authentication
- TypeScript cache issue
- Restart dev server
If you're still having issues:
- Check the browser console for error messages
- Verify the GitHub username exists
- Try a different repository
- Restart the dev server
- Clear browser cache
Try these to verify the app works:
Username: torvalds
Repository: linux
Or:
Username: gvanrossum
Repository: cpython
These are well-known repositories with plenty of commits.