{"id":13768547,"url":"https://github.com/srtucker22/chatty","last_synced_at":"2025-04-05T22:06:03.779Z","repository":{"id":149611159,"uuid":"82373208","full_name":"srtucker22/chatty","owner":"srtucker22","description":"A WhatsApp clone with React Native and Apollo (Tutorial)","archived":false,"fork":false,"pushed_at":"2018-08-26T21:41:04.000Z","size":28816,"stargazers_count":500,"open_issues_count":18,"forks_count":109,"subscribers_count":30,"default_branch":"master","last_synced_at":"2025-03-29T21:04:28.091Z","etag":null,"topics":["apollo","apollo-client","apollo-server","graphql","javascript","node","nodejs","react","react-apollo","react-native","react-navigation","reactjs","sequelize","tutorial","tutorials"],"latest_commit_sha":null,"homepage":"https://medium.com/@simontucker/building-chatty-a-whatsapp-clone-with-react-native-and-apollo-part-1-setup-68a02f7e11","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/srtucker22.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2017-02-18T08:35:30.000Z","updated_at":"2025-03-03T20:48:11.000Z","dependencies_parsed_at":"2023-04-25T11:32:19.521Z","dependency_job_id":null,"html_url":"https://github.com/srtucker22/chatty","commit_stats":null,"previous_names":[],"tags_count":34,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/srtucker22%2Fchatty","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/srtucker22%2Fchatty/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/srtucker22%2Fchatty/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/srtucker22%2Fchatty/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/srtucker22","download_url":"https://codeload.github.com/srtucker22/chatty/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247406087,"owners_count":20933803,"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":["apollo","apollo-client","apollo-server","graphql","javascript","node","nodejs","react","react-apollo","react-native","react-navigation","reactjs","sequelize","tutorial","tutorials"],"created_at":"2024-08-03T16:01:22.719Z","updated_at":"2025-04-05T22:06:03.760Z","avatar_url":"https://github.com/srtucker22.png","language":"JavaScript","readme":"# Chatty\n\n[//]: # (head-end)\n\n\n## A WhatsApp clone with React Native and Apollo\n\n* [Overview](#overview)\n* [Steps](#steps)\n* [Installing](#installing)\n* [Getting Started](#getting-started)\n* [Contributing](#contributing)\n* [Licence](#licence)\n\n# Overview\nView the Medium blog for this tutorial [here](https://medium.com/react-native-training/building-chatty-a-whatsapp-clone-with-react-native-and-apollo-part-1-setup-68a02f7e11).\n\nThis tutorial was created using [tortilla](https://github.com/Urigo/tortilla), an incredible framework for building tutorials.\n\nStarting with the very first commit, every commit in Chatty represents the next step in the tutorial. Follow the tutorial for a guided walk through the code, or investigate a commit to see exactly what code changed for a given step. Since this is git, you can even download the app at any step in the tutorial -- how cool is that?!\n\n# Steps\n1. [Setup](/.tortilla/manuals/views/step1.md)\n2. [GraphQL Queries with ApolloServer](/.tortilla/manuals/views/step2.md)\n3. [GraphQL Queries with React Apollo](/.tortilla/manuals/views/step3.md)\n4. [GraphQL Mutations \u0026 Optimistic UI](/.tortilla/manuals/views/step4.md)\n5. [GraphQL Pagination](/.tortilla/manuals/views/step5.md)\n6. [GraphQL Subscriptions](/.tortilla/manuals/views/step6.md)\n7. [GraphQL Authentication](/.tortilla/manuals/views/step7.md)\n8. [GraphQL Input Types](/.tortilla/manuals/views/step8.md)\n\n# Installing\n```sh\nnpm install                       # install server dependencies\ncd client \u0026\u0026 npm install          # install client dependencies\n```\nFor Steps 7 and higher, please enter your configuration variables in `.env`:\n```\n# use your own secret!!!\nJWT_SECRET=your_secret\n```\n\n# Getting Started\n```sh\nnpm start                         # start the server\ncd client \u0026\u0026 react-native run-ios  # start RN client\n```\n\n# Contributing\nThis project welcomes code contributions, bug reports and feature requests. Please see the guidelines in [CONTRIBUTING.MD](CONTRIBUTING.MD) if you are interested in contributing.\n\n# License\nMIT License\n\nCopyright (c) 2018 Simon Tucker\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n\n[//]: # (foot-start)\n\n[{]: \u003chelper\u003e (navStep)\n\n| [Begin Tutorial \u003e](.tortilla/manuals/views/step1.md) |\n|----------------------:|\n\n[}]: #\n","funding_links":[],"categories":["Boilerplates and Example Apps"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsrtucker22%2Fchatty","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsrtucker22%2Fchatty","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsrtucker22%2Fchatty/lists"}