Giter Club home page Giter Club logo

graph-googleapi's Introduction

GitHunt

A full-stack Apollo Client and Server example app.

Get on Slack Build Status

Demonstrates:

  1. GraphQL schema, resolvers, models, and connectors to read from two different data sources, GitHub REST API and SQL
  2. Web server with authentication and basic authorization using Express, Passport, and Apollo Server
  3. React app with React Router and Apollo Client that displays data and does some writes

As Apollo Client and Server gain more features, we'll add them to this app. Please submit a pull request if you see anything that can be improved!

Running the app

1. Install Node/npm

Make sure you have Node.js installed (the app has been tested with Node 4.4.5 and 5.3.0)

2. Clone and install dependencies

git clone https://github.com/apollostack/GitHunt.git
cd GitHunt
npm install

3. Run Migrations

Set up the SQLite database and run migrations/seed data with the following commands:

npm run migrate
npm run seed

4. Get GitHub API keys

Github OAuth

On the following page, grab:

  • Client ID
  • Client Secret

OAuth Key

5. Add Environment Variables

Set your Client ID and Client Secret Environment variables:

export GITHUB_CLIENT_ID="your Client ID"
export GITHUB_CLIENT_SECRET="your Client Secret"

Or you can use dotenv.

cp .env.default .env and edit with your Github keys.

6. Run the app

npm start
  • Open the client at http://localhost:3000
  • Click "Log in with GitHub" in the upper right corner
  • You'll be presented with the seed items in the app

GitHunt App

Submit a Repo

Click the green Submit button and add repo with the username/repo-name pattern.

GitHunt App

New Item

Review the new item, up vote it and visit the repo via the link.
GitHunt App

Apollo Server

The server will run on port 3010, but the Webpack dev server proxies it to 3000. You can access the server's GraphiQL UI at http://localhost:3000/graphql.

GitHunt App

Code patterns to demonstrate

  1. Routes and data loading
  2. Server side rendering and store hydration
  3. Merging data from multiple backends/APIs
  4. Authentication and basic security
  5. Mutations - updating and inserting items
  6. Developer tool integrations, like eslint-plugin-graphql
  7. One place where there is reactivity/streaming data (nice to have)

As new patterns emerge in Apollo development, we should add them to this app.

App concept

GitHunt - like product hunt for GitHub repositories.

There are three views:

  1. The home page feed, which is a ranked list of repositories
  2. A page to submit a new repository
  3. A repository page, with comments

Does it demonstrate all of the required features above?

  • Routes and data loading? Yes, it has multiple pages which require different data.
  • SSR/hydration? Yes, the front page should load fast.
  • Merging data? Yes, this will merge upvote and comment data from a local database with repository information from GitHub.
  • Auth and basic security? Yes, it will have GitHub login, and security so that people can only post comments when logged in, and everyone can only vote once per repo.
  • Mutations: Submitting a new repo, voting, and commenting.
  • Dev tools: Yes
  • Reactivity: we can reactively update the vote count on the repository page via a websocket or poll.

Technology choices

  • Apollo server - to put a nice unified API on top of our GitHub and local data
  • Apollo client - to load that data declaratively into our UI
  • React - it's a great way to build UIs, and has the best integration with Apollo and Redux
  • React router - it seems to be the most popular React router today, and has some great hooks and techniques for SSR. It seems like James Baxley has had some success with implementing this stuff already with React Router.
  • Webpack - the Meteor build system is by far the most convenient, but comes with a dependency on mongo, its own account system, etc. Since we want to learn how Apollo works without all of these things, we're going to not use it even though it would reduce the complexity of the code.
  • Babel - to compile our server code.
  • Redux - to manage client side data, perhaps we can also use Redux Form to manage the submission form, but we'll see when we get there.
  • Passport.js for login - this seems to be the most common login solution for Express/Node, and has a great GitHub login solution. Jonas has already written a tutorial for using that with GraphQL.
  • SQL for local data - We'll use SQLite for dev, and Postgres for production. TBD - should we use Sequelize or some other ORM? Or just Knex for query building?
  • Bootstrap for styling - I already know how to use it, and I don't want the styling to be the focus of the app. Let's keep it as simple as possible.

graph-googleapi's People

Contributors

abhiaiyer91 avatar amandajliu avatar dburles avatar delgermurun avatar grigio avatar helfer avatar jboothe avatar martijnwalraven avatar michaltakac avatar poincare avatar pradel avatar slava avatar timmikeladze avatar tychota avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.