create-graphback

Create production-ready GraphQL servers using Graphback

Usage no npm install needed!

<script type="module">
  import createGraphback from 'https://cdn.skypack.dev/create-graphback';
</script>

README

Graphback


Auto generate database structure,
GraphQL Resolvers and Queries from GraphQL types 🚀

Motivation

Provides a small command line utility that can be used to initialise a Graphback project. Graphback helps you to kickstart your experience with any existing GraphQL implementation by generating backend and client side CRUD layer using your GraphQL data model.

Documentation: https://graphback.dev

Repository: https://github.com/aerogear/graphback/

Usage

You can initialise a Graphback project by either of the following commands:

npx create-graphback my-project
npm init graphback my-project

The CLI will ask you to pick from one of a number of templates. Once chosen, the template will be downloaded to your computer.

Change into your project folder:

cd my-awesome-project

And follow the instructions in the README.md file to know how you can run the project.