Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Howtographql | 8,495 | 3 days ago | 163 | mit | TypeScript | |||||
The Fullstack Tutorial for GraphQL | ||||||||||
Awesome Nextjs | 8,436 | 6 days ago | 62 | |||||||
:notebook_with_decorative_cover: :books: A curated list of awesome resources : books, videos, articles about using Next.js (A minimalistic framework for universal server-rendered React applications) | ||||||||||
Graphql Editor | 5,786 | 1 | 15 days ago | 21 | September 24, 2022 | 22 | mit | TypeScript | ||
📺 Visual Editor & GraphQL IDE. Draw GraphQL schemas using visual 🔷 nodes and explore GraphQL API with beautiful UI. Even 🐒 can do that! | ||||||||||
Learnapollo | 5,315 | 5 years ago | 10 | mit | TypeScript | |||||
👩🏻🏫 Learn Apollo - A hands-on tutorial for Apollo GraphQL Client (created by Graphcool) | ||||||||||
Graphql Design Tutorial | 2,142 | 7 months ago | 3 | mit | ||||||
Strapi Examples | 1,286 | 2 months ago | 31 | mit | JavaScript | |||||
:mortar_board: List of examples using Strapi | ||||||||||
Fullstack Tutorial | 1,218 | 2 months ago | 89 | mit | TypeScript | |||||
🚀 The Apollo platform tutorial app | ||||||||||
Learn Graphql | 1,086 | 22 days ago | 88 | mit | JavaScript | |||||
Real world GraphQL tutorials for frontend developers with deadlines! | ||||||||||
Eliasdb | 937 | 8 months ago | 6 | March 19, 2022 | 13 | mpl-2.0 | Go | |||
EliasDB a graph-based database. | ||||||||||
Learnrelay | 890 | 4 years ago | 15 | mit | TypeScript | |||||
Learn Relay - A comprehensive introduction to Relay (created by Graphcool) |
How to GraphQL is a fullstack tutorial website to learn all about GraphQL! It was built by Prisma and many amazing contributors. All content on the site is completely free and open-source.
Note: This repository is currently mostly unmaintained. We are looking for maintainers who can help cleaning up issues and PRs opened by the community. If you are interested in helping out, please reach out!
The content for all tutorials is located in the /content
directory. Here is an overview of all the tutorials that are available at the moment:
As the whole project is open-source, you're more than welcome to fix typos and other small issues yourself and create a PR for the fix. If you want to contribute a whole tutorial track or update one of the out of date tutorials please get in touch.
The project has some native (gyp) dependencies. To get this running, please make sure your environment it set with the following:
.nvmrc
..env
to your environment variables (some shell loads it automatically, but if not, you can do: source .env
to load it)You can run a local instance of How to GraphQL by executing the following commands in a terminal:
git clone [email protected]:howtographql/howtographql.git
cd howtographql
yarn install
yarn start # http://localhost:8000/
Note: If you're using Node 8, you might need to invoke
npm install -g node-gyp
before you're starting the app. More info here.
If you are having issues with sharp
dependency, please make sure you have installed >0.18.2
of it. Older versions have hardcoded dependency on a legacy artifactory.
To check the version you have, run: yarn why sharp
.
If you are still having issues, please make sure that you have SHARP_DIST_BASE_URL
environemnt variable set correctly (see .env
file) and then run yarn install
again.