https://github.com/tneos/search-github-users
Web app that allows you to search for users on Github
https://github.com/tneos/search-github-users
apollo-client github-api react shadcn-ui tailwind-css typescript vite
Last synced: 5 months ago
JSON representation
Web app that allows you to search for users on Github
- Host: GitHub
- URL: https://github.com/tneos/search-github-users
- Owner: tneos
- Created: 2025-07-22T15:49:14.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2025-07-23T13:37:47.000Z (6 months ago)
- Last Synced: 2025-07-23T15:31:02.982Z (6 months ago)
- Topics: apollo-client, github-api, react, shadcn-ui, tailwind-css, typescript, vite
- Language: TypeScript
- Homepage:
- Size: 102 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Search Github Users
Web app that allows you to search for users on Github.




## Tools
- React
- Vite
- Tailwind CSS
- Shadcn UI
- Typescript
- Github API
- Appollo Client
## Setup
- create a new directory
```bash
npm create vite@latest . -- --template react-ts
```
```bash
npm install
```
```bash
npm run dev
```
## Tailwind CSS
```bash
npm install -D tailwindcss postcss autoprefixer
npx tailwindcss init -p
```
```js
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {},
},
plugins: [],
};
```
index.css
```css
@import "tailwindcss";
@import "tw-animate-css";
```



```
```