Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Next Auth | 19,989 | 21 | 293 | 18 hours ago | 673 | November 28, 2023 | 351 | isc | TypeScript | |
Authentication for the Web. | ||||||||||
Styled System | 7,707 | 1,400 | 2,277 | 3 months ago | 149 | February 17, 2020 | 237 | mit | JavaScript | |
⬢ Style props for rapid UI development | ||||||||||
Developerfolio | 4,634 | 3 days ago | 71 | gpl-3.0 | JavaScript | |||||
🚀 Software Developer Portfolio Template that helps you showcase your work and skills as a software developer. | ||||||||||
Musish | 2,970 | 2 months ago | 169 | agpl-3.0 | TypeScript | |||||
Apple Music...ish | ||||||||||
Nextjs Auth0 | 1,828 | 3 | 23 | 2 days ago | 70 | November 13, 2023 | 5 | mit | TypeScript | |
Next.js SDK for signing in with Auth0 | ||||||||||
React Google Login | 1,799 | 865 | 198 | 10 months ago | 94 | January 04, 2021 | 201 | mit | JavaScript | |
A React Google Login Component | ||||||||||
Vault Ui | 1,299 | 1 | 5 years ago | 3 | October 04, 2017 | 50 | other | JavaScript | ||
Vault-UI — A beautiful UI to manage your Vault, written in React | ||||||||||
React Blog Github | 763 | 7 months ago | 32 | mit | JavaScript | |||||
🔥 React + Github Issues 👉 Your Personal Blog | ||||||||||
Storybook Design Token | 602 | 3 | 72 | a month ago | 84 | November 09, 2023 | 41 | mit | TypeScript | |
Display design token documentation generated from your stylesheets and icon files. Preview design token changes in the browser. Add your design tokens to your Storybook Docs pages using the custom Doc Blocks. | ||||||||||
Design System Utils | 415 | 6 | 20 | 4 years ago | 30 | March 02, 2019 | 12 | mit | TypeScript | |
👩🎨 Access your design tokens with ease |
githubber is a small sample app written in react-native, which uses Github's GraphQL API as a backend and performs some basic queries and mutations using apollo-client.
This app was developed following the steps in the react-native docs - "Building projects with native code". Env setup:
Environment:
Node: 9.4.0
Yarn: 1.3.2
npm: 5.6.0
Watchman: 4.9.0
Xcode: 9.2/9C40b - /usr/bin/xcodebuild
Android Studio: 3.2 AI-181.5540.7.32.5056338
To communicate with the GraphQL server, you'll need an OAuth token with the right scopes. Follow the steps in "Creating a personal access token for the command line" to create a token. After getting a token, follow these steps to start the app:
$ git clone https://github.com/emimuresan/githubber.git
$ cd githubber && touch .env
$ echo "GITHUB_TOKEN=<your token here>" > .env
$ yarn install
$ yarn ios OR yarn android
yarn ios
- start the app in the iOS simulatoryarn android
- start the app in the Android emulatoryarn lint
- runs eslint checks + fixesyarn test
- runs available unit tests