Log in to GraphQL Editor
Full stack Starterkit - GraphQL-first boilerplate that scales
Tomek

Tomek Poniatowicz

8/5/2020

Full stack Starterkit - GraphQL-first boilerplate that scales

Configuration of a boilerplate for your newly started projects is a tedious, repeatable job ... which you can forget about thanks to @karanpratapsingh, who has made a full-stack boilerplate following some of the best patterns & practices learned from most-popular codebase and developers he has worked with. All that to make it possible to bootstrap your GraphQL-first app in React with just a couple clicks.

No matter if are starting a simple personal project or enterprise app you are getting a scalable full-stack starter kit following good architecture patterns, which is super significant as your project grows.

Tech stack

  • React (with TypeScript) - the frontend part is powered by React with TypeScript, a JavaScript extension providing types that would save you much time catching errors.
  • GraphQL (with Apollo) - as already mentioned at the beginning, this is a GraphQL-first approach using most popular GraphQL implementation - Apollo,
  • Prisma - Prisma is an open-source modern ORM that makes database access easy with an auto-generated query builder. In this starterkit its begin used for PostgreSQL but the out is open for suggestions so if you would see other ORM or drivers here just submit a PR,
  • Jest - Jest is a JavaScript-based Testing Framework working fine with numerous languages and frameworks, among others, React & TypeScript. The boilerplate comes with sample tests that are easily extendable for future modules as simplicity is one of the Jest's top principles.

Tech stack of Full Stack Starterkit

Project architecture

The library is using yarn workspaces which makes it easier to split the monorepo into packages responsible for a database connection, GraphQL part etc. It makes it really helpful if you choose to split GraphQL into its own set of microservices. The packages are organized as below:

Project architecture

Source: karanpratapsingh/fullstack-starterkit

Getting started

If you are ready to start your next GraphQL+React project begin with creating .env files at both backend/.env as well as web/.env following the .env.template files located in those directories. The next step would be installing dependencies. The author recommends using yarn instead of npm as this boilerplate uses yarn workspaces heavily. To run backend & frontend use:

yarn start:backend
yarn start:web

but make sure to provide your own DATABASE_URL rather than default one from .env.template as it might be changed or deleted anytime, as mentioned by the library creator. If you like the idea of GraphQL-first full-stack boilerplate please show its maintainers some love and leave a star :)

Check out our other blogposts

The state of GraphQL 2020
Tomek Poniatowicz
Tomek Poniatowicz
The state of GraphQL 2020
3 min read
about 3 years ago
GQLess - a GraphQL client without queries
Tomek Poniatowicz
Tomek Poniatowicz
GQLess - a GraphQL client without queries
2 min read
about 4 years ago
Graphsourcing new way to build systems
Artur Czemiel
Artur Czemiel
Graphsourcing new way to build systems
8 min read
over 5 years ago

Ready for take-off?

Elevate your work with our editor that combines world-class visual graph, documentation and API console

Get Started with GraphQL Editor