{"id":18386550,"url":"https://github.com/stemmlerjs/ac3-todos-tutorial","last_synced_at":"2025-06-26T01:36:00.406Z","repository":{"id":39144644,"uuid":"259694330","full_name":"stemmlerjs/ac3-todos-tutorial","owner":"stemmlerjs","description":"Learn Apollo Client 3 by building a todos app","archived":false,"fork":false,"pushed_at":"2023-01-06T04:33:26.000Z","size":4348,"stargazers_count":22,"open_issues_count":39,"forks_count":10,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-07T00:33:18.628Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/stemmlerjs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-04-28T16:37:13.000Z","updated_at":"2024-02-20T04:55:04.000Z","dependencies_parsed_at":"2023-02-05T08:00:43.634Z","dependency_job_id":null,"html_url":"https://github.com/stemmlerjs/ac3-todos-tutorial","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/stemmlerjs/ac3-todos-tutorial","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stemmlerjs%2Fac3-todos-tutorial","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stemmlerjs%2Fac3-todos-tutorial/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stemmlerjs%2Fac3-todos-tutorial/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stemmlerjs%2Fac3-todos-tutorial/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stemmlerjs","download_url":"https://codeload.github.com/stemmlerjs/ac3-todos-tutorial/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stemmlerjs%2Fac3-todos-tutorial/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261983467,"owners_count":23240217,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-06T01:22:26.972Z","updated_at":"2025-06-26T01:36:00.348Z","avatar_url":"https://github.com/stemmlerjs.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://www.learnwithjason.dev\"\u003e\n    \u003cimg src=\"https://res.cloudinary.com/jlengstorf/image/upload/q_auto,f_auto,w_240/v1579281727/lwj/learnwithjason.png\" alt=\"Learn With Jason\" width=\"120\" /\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\u003ch1 align=\"center\"\u003e\n  Let's Learn Apollo Client v3! (with Khalil Stemmler)\n\u003c/h1\u003e\n\u003ch3 align=\"center\"\u003e\n  This app was built live on \u003cem\u003eLearn With Jason\u003c/em\u003e and it was super fun and I’m sad you weren’t there.\n\u003c/h3\u003e\n\u003cp align=\"center\"\u003e\n  But don’t worry! You can still: \n  \u003ca href=\"https://www.learnwithjason.dev/let-s-learn-apollo-client-v3\"\u003e\u003cstrong\u003ewatch the video\u003c/strong\u003e\u003c/a\u003e · \n  \u003c!-- \u003ca href=\"https://demo name.netlify.com\"\u003e\u003cstrong\u003esee the demo\u003c/strong\u003e\u003c/a\u003e ·  --\u003e\n  \u003ca href=\"https://app.netlify.com/start/deploy?repository=https://github.com/stemmlerjs/ac3-todos-tutorial\u0026utm_source=learnwithjason\u0026utm_medium=github\u0026utm_campaign=devex\"\u003e\u003cstrong\u003edeploy this project\u003c/strong\u003e\u003c/a\u003e · \n  \u003ca href=\"https://jason.af/lwj/schedule\"\u003e\u003cstrong\u003esee upcoming episodes\u003c/strong\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n\u0026nbsp;\n\nApollo is one of the most popular GraphQL libraries available today. In this episode, Khalil Stemmler teaches us how to get started with Apollo Client's latest major release.\n\nThis is a tutorial app to learn Apollo Client during Jason Lengstorf's livestream @ \"[Let's Learn Apollo Client v3! (with Khalil Stemmler)](https://www.learnwithjason.dev/let-s-learn-apollo-client-v3)\".\n\n\u003e For more examples on how to do Local State, Remote State, utilize the new AC3 cache APIs, check out the [@apollo/ac3-state-management-examples](https://github.com/apollographql/ac3-state-management-examples) repo.\n\n## Getting started\n\nThere is a `client/` and `server/` portion to this example.\n\n### Running the client\n\nTo start the project, run the following commands:\n\n```\ncd client\nnpm install \u0026\u0026 npm run start\n```\n\nThe app should start at http://localhost:3000/.\n\n### Running the server\n\nTo start the project, run the following commands:\n\n```\ncd server\nnpm install \u0026\u0026 npm run start\n```\n\nThe server should start at http://localhost:4000/.\n\n\u0026nbsp;\n\n## More Information\n\n- [Watch this app get built live + see links and additional resources][episode]\n- [Follow _Learn With Jason_ on Twitch][twitch] to watch future episodes live\n- [Add the _Learn With Jason_ schedule to your Google Calendar][cal]\n\n\u0026nbsp;\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://app.netlify.com/start/deploy?repository=https://github.com/stemmlerjs/ac3-todos-tutorial\u0026utm_source=learnwithjason\u0026utm_medium=github\u0026utm_campaign=devex\"\u003e\n    \u003cimg src=\"https://www.netlify.com/img/deploy/button.svg\" alt=\"Deploy this project to Netlify\" /\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n[episode]: https://www.learnwithjason.dev/let-s-learn-apollo-client-v3\n[twitch]: https://jason.af/twitch\n[cal]: https://jason.af/lwj/cal\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstemmlerjs%2Fac3-todos-tutorial","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstemmlerjs%2Fac3-todos-tutorial","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstemmlerjs%2Fac3-todos-tutorial/lists"}