https://github.com/imjaroiswebdev/graphql-server-scafold
Working GraphQL Server with complete data CRUD and subscriptions for using as scaffolding for basic to medium projects
https://github.com/imjaroiswebdev/graphql-server-scafold
es6 graphql javascript standard
Last synced: about 1 month ago
JSON representation
Working GraphQL Server with complete data CRUD and subscriptions for using as scaffolding for basic to medium projects
- Host: GitHub
- URL: https://github.com/imjaroiswebdev/graphql-server-scafold
- Owner: imjaroiswebdev
- Created: 2017-12-09T05:08:01.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-12-09T05:49:47.000Z (over 8 years ago)
- Last Synced: 2025-03-23T22:18:39.454Z (about 1 year ago)
- Topics: es6, graphql, javascript, standard
- Language: JavaScript
- Size: 42 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://standardjs.com)
# graphql-server-scafold | GraphQL server for starting projects
Working GraphQL Server with complete data CRUD and subscriptions for using as scaffolding for basic to medium projects
This server is made on top raw graphql-js and has a connection to MongoDB for data CRUD persistency.
#### To start it...
```bash
$ export MONGODB_URI="mongodb://your-database-uri/port" && yarn start-dev
# OR JUST...
$ yarn start-dev
# SAME BUT WITH NPM...
$ npm run start-dev
```
### process.env Variables declared:
* __HOST__: For domain or ip of the server
* __PORT__: Self descriptive
* __MONGODB_URI__: url of database
* __NODE_ENV__: To control if Graphiql should be available
> Feel free to use it