- Monorepo project structure powered by Yarn v2 with PnP
- GraphQL API using code-first development approach (TypeScript, GraphQL.js, Knex, PostgreSQL)
- Stateless JWT cookie-based authentication (supporting SSR, OAuth 2.0 via Google, Facebook, etc.)
- Database tooling β seed files, migrations, Knex.js REPL shell, etc.
- Front-end boilerplate pre-configured with TypeScript, Webpack v5, React, Relay, and Materia UI
- Serverless deployment β
api,imgβ Cloud Functions,webβ Cloudflare Workers - HTML page rendering (SSR) at CDN edge locations, all ~100 points on Lighthouse
- Pre-configured dev, test / QA, production, and review (per PR) environments
- Pre-configured VSCode code snippets and other VSCode settings
- The ongoing design and development is supported by these wonderful companies:
This project was bootstrapped with GraphQL API Starter Kit. Be sure to join our Discord channel for assistance.
βββ.github β GitHub configuration including CI/CD workflows
βββ.vscode β VSCode settings including code snippets, recommended extensions etc.
βββenv β environment variables that are used for local development (local, test, prod)
βββdb β database schema, seeds, and migrations (Cloud SQL, Knex.js)
βββapi β GraphQL API and authentication (Could SQL, Cloud Functions, GraphQL.js)
βββimg β dynamic image resizing (Cloud Functions, [Cloud Storage](https://
cloud.google.com/storage))
βββinfra β cloud infrastructure configuration (Terraform)
βββweb β React / Relay web application with CDN rendering (Webpack, Cloudflare Workers)
βββscripts β Automation scripts shared across the project
βββ ... β add more packages such as worker, admin, mobile, etc.
- Node.js v16, Yarn package manager
- Local or remote instance of PostgreSQL (see Postgres.app, Google Cloud SQL)
- VS Code editor with recommended extensions
Just clone the repo and run yarn setup followed by yarn start:
$ git clone --origin=seed --branch=main --single-branch \
https://github.com/kriasoft/relay-starter-kit.git example
$ cd ./example # Change current directory to the newly created one
$ yarn install # Install project dependencies
$ yarn setup # Configure environment variables
$ yarn db:reset # Create or update PostgreSQL database
$ yarn api:start # Launch GraphQL API and authentication server
$ yarn web:start # Launch React/Relay front-end appThe API server must become available at http://localhost:8080/api.
The web application front-end must become available at http://localhost:3000/.
- Yarn 2 (Berry) - Plug'n'play, constraints and workspaces by @jherr
- Google Cloud SQL β Tips & Tricks by @koistya
- Database change management with Node.js by @koistya
In the case when you kept the original Node.js Starter Kit git history, you can always pull and merge updates from the "upstream" repository back into your project by running:
$ git fetch seed # Fetch Node.js Starter Kit (upstream) repository
$ git checkout main # Switch to the main branch (or, master branch)
$ git merge seed/main # Merge upstream/master into the local branchIn order to update Yarn and other dependencies to the latest versions, run:
$ yarn set version latest # Upgrade Yarn CLI to the latest version
$ yarn upgrade-interactive # Bump Node.js dependencies using an interactive mode
$ yarn install # Install the updated Node.js dependencies
$ yarn dlx @yarnpkg/sdks vscode # Update VSCode settingsAnyone and everyone is welcome to contribute. Start by checking out the list of open issues marked help wanted. However, if you decide to get involved, please take a moment to review the guidelines.
Copyright Β© 2016-present Kriasoft. This source code is licensed under the MIT license found in the LICENSE file.
Made with β₯ by Konstantin Tarkus (@koistya, blog) and contributors.











