https://github.com/coderdiaz/express-graphql
https://github.com/coderdiaz/express-graphql
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/coderdiaz/express-graphql
- Owner: coderdiaz
- Created: 2019-11-30T20:36:21.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-12-14T21:01:49.000Z (over 5 years ago)
- Last Synced: 2025-01-05T08:29:41.524Z (6 months ago)
- Language: JavaScript
- Size: 80.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Expresss GraphQL
## How to start
```js
# Install dependencies
$ yarn # or npm i# Run service in dev mode
$ yarn dev # or npm run dev
```## Build for production
```js
# Install dependencies
$ yarn # or npm i# Generate project
$ yarn build # or npm run build
```## Dependencies
```sh
yarn add -D @babel/cli @babel/core @babel/node @babel/plugin-transform-runtime @babel/preset-env babel-plugin-inline-import nodemonyarn add dotenv express @babel/polyfill @babel/runtime
yarn add apollo-server-express graphql
```