🚀 Bootstrap your fullstack GraphQL app within seconds
Basic starter kit for a fullstack GraphQL app with Vue and Node.js - based on best practices from the GraphQL community.
- Scalable GraphQL server: The server uses
graphql-yoga
which is based on Apollo Server & Express - Pre-configured Apollo Client: The project comes with a preconfigured setup for Apollo Client
- Tooling: Out-of-the-box support for GraphQL Playground & query performance tracing
- Extensible: Minimal GraphQL schema – easy to extend
- No configuration overhead: Preconfigured
graphql-config
setup
You need to have the GraphQL CLI installed to bootstrap your GraphQL server using graphql create
:
npm install -g graphql-cli
# 1. Bootstrap GraphQL server in directory `my-app`, based on `vue-fullstack-minimal` boilerplate
graphql create my-app --boilerplate vue-fullstack-minimal
# 2. When prompted, deploy the Prisma service to a _public cluster_
# 3. Navigate into the `server` directory of the new project
cd my-app/server
# 4. Start the server
yarn start # runs server on http://localhost:4000
# 5. Open a new tab in the terminal and navigate back into my-app;
# then run the app
cd ..
yarn start
The GraphQL boilerplates are maintained by the GraphQL community, with official support from the Apollo & Graphcool teams.
Your feedback is very helpful, please share your opinion and thoughts! If you have any questions or want to contribute yourself, join the #graphql-boilerplate
channel on our Slack.