Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Core.js | 1,025 | 8 | 145 | 7 days ago | 46 | July 08, 2022 | 16 | mit | TypeScript | |
Extendable client for GitHub's REST & GraphQL APIs | ||||||||||
Django Graphql Jwt | 785 | 86 | 14 | 23 days ago | 27 | August 11, 2021 | 53 | mit | Python | |
JSON Web Token (JWT) authentication for Graphene Django | ||||||||||
Poc Graphql | 367 | a day ago | mit | Java | ||||||
Research on GraphQL from an AppSec point of view. | ||||||||||
Graphql Auth | 334 | 5 years ago | 2 | mit | JavaScript | |||||
Express Graphql Mongodb Boilerplate | 269 | 2 years ago | mit | JavaScript | ||||||
A boilerplate for Node.js apps / GraphQL-API / Authentication from scratch - express, graphql - (graphql compose), mongodb (mongoose). | ||||||||||
Wp Graphql Jwt Authentication | 269 | 2 months ago | 10 | May 16, 2022 | 60 | gpl-3.0 | PHP | |||
Authentication for WPGraphQL using JWT (JSON Web Tokens) | ||||||||||
Fresh | 263 | 2 | 2 days ago | 11 | April 04, 2022 | 17 | mit | Dart | ||
🍋 A token refresh library for Dart. | ||||||||||
Repo Remover | 252 | 2 months ago | 4 | mit | Vue | |||||
A web app that helps you archive and delete old/unused repos, quickly and easily. | ||||||||||
Nest User Auth | 221 | a year ago | 8 | mit | TypeScript | |||||
A starter build for a back end which implements managing users with MongoDB, Mongoose, NestJS, Passport-JWT, and GraphQL. | ||||||||||
Lighthouse Graphql Passport Auth | 217 | 3 | 8 days ago | 45 | June 17, 2021 | mit | PHP | |||
Add GraphQL mutations to get tokens from passport for https://lighthouse-php.com/ |
The goal of this tutorial is to get frontend developers up and running with GraphQL. Note that it's written using both Typescript and React Hooks, so users should have some familiarity with those tools before getting started.
The tutorial is broken into three sections:
Do the usual NPM dance:
npm install
Then create your Github access token (https://help.github.com/en/articles/creating-a-personal-access-token-for-the-command-line). This will be needed to get access to their API in the lessons. At a minimum you will need to give the token repo and user access.
Once you have your token, create a .env file at the project root, and add the token there:
// .env
GITHUB_TOKEN=1234faketoken
To run the code for a particular lesson, just run:
npm start -- lesson-{1|2|3}