Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/apollographql/fullstack-tutorial
🚀 The Apollo platform tutorial app
https://github.com/apollographql/fullstack-tutorial
apollo-client apollo-server graphql javascript node react
Last synced: 3 months ago
JSON representation
🚀 The Apollo platform tutorial app
- Host: GitHub
- URL: https://github.com/apollographql/fullstack-tutorial
- Owner: apollographql
- License: mit
- Created: 2018-07-10T18:32:20.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2024-06-07T15:59:25.000Z (5 months ago)
- Last Synced: 2024-06-18T07:34:11.578Z (5 months ago)
- Topics: apollo-client, apollo-server, graphql, javascript, node, react
- Language: TypeScript
- Homepage: https://www.apollographql.com/docs/tutorial/introduction.html
- Size: 10.9 MB
- Stars: 1,234
- Watchers: 71
- Forks: 843
- Open Issues: 63
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome - apollographql/fullstack-tutorial - 🚀 The Apollo platform tutorial app (TypeScript)
README
# ARCHIVED
This repo was archived on August 23, 2023. This repo was a companion to the Apollo Fullstack Tutorial, which is now a deprecated course and no longer maintained. If you're looking to learn GraphQL basics with Apollo, [check out the Lift-off series](https://www.apollographql.com/tutorials/lift-off-part1).
# Apollo tutorial
This is the fullstack app for the [Apollo tutorial](https://www.apollographql.com/tutorials/fullstack-quickstart). 🚀
## File structure
The app is split out into two folders:
- `start`: Starting point for the tutorial
- `final`: Final versionFrom within the `start` and `final` directories, there are two folders (one for `server` and one for `client`).
## Installation
To run the app, run these commands in two separate terminal windows from the root:
```bash
cd final/server && npm i && npm start
```and
```bash
cd final/client && npm i && npm start
```