All Projects → apollographql → Meteor Starter Kit

apollographql / Meteor Starter Kit

A minimal setup to use Apollo with Meteor and React.

Programming Languages

javascript
184084 projects - #8 most used programming language

Meteor + Apollo boilerplate

A simple kit to start experimenting with Apollo, Meteor and React.

Includes

  • GraphQL server running with Express bound to the Meteor app
  • Apollo client
  • React
  • Accounts UI, Basic & password
  • ES6 syntax

Check package.json for specific versions

Running it

meteor npm install
meteor

GraphiQL is enabled at /graphiql.

Folder structure

.
├── client                  # Client files
│   ├── styles              # Styles
│   ├── main.html           # First loaded view pulling from imports
│   └── main.js             # Imports all required files - React render
├── imports                 # A client/server folder
│   ├── api                 #
│   |  └── schema.js        # Schema & query definitions
|   └── ui                  # UI React rendering
│      └── App.js           # Component using `graphql` HOC
│      └── Header.js        # Basic presentational component
│      └── Loading.js       # Reusable loading component
│      └── LoginForm.js     # Component using `withApollo` HOC
├── server                  # Server files
│   └── server.js           # Main server file initiating Apollo server
└── package.json            # node dependencies

Learn more

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].