ustart-scripts v2.0.0
uStart
uStart is a NodeJS framework for building GraphQL backends using Apollo, Sequelize, Mongoose and other great tools. Check out our site ustart.dev.
Getting started
Ensure you have the latest Node installed
You have to be on Node >= 8.x
Create a new folder for your project
mkdir awesome-project
cd awesome-projectInitialize with the ustart CLI. This will create the project structure and install all NPM dependencies for you
npx ustart-cli@alpha initNote that the above instruction uses the alpha version.
We use npx to avoid global installation of the CLI. Once npx finish the ustart-cli will be available as a local package by typing npx ustart <command>.
Verfying Installation
Run your project
npm run startIf everything has gone well your console will log:
NODE_ENV: development
Server is running on http://localhost:4000Good, that means you have running the playground on localhost port 4000.
Execute your first query. Open your browser and open localhost:4000, go to the left panel and type:
query {
hello
}Press the play icon in the middle of both panels, then the right panel should show:
"data": {
"hello": "Hello there, everything is right. You can keep reading the docs!"
}If the response is the same you are ready to play!.
Go and try our first example on ustart.dev.
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago