https://github.com/nurettintopal/nodejs-graphql
GraphQL Server Boilerplate for Node.js
https://github.com/nurettintopal/nodejs-graphql
graphql graphql-apollo graphql-server graphql-server-boilerplate nodejs
Last synced: about 1 year ago
JSON representation
GraphQL Server Boilerplate for Node.js
- Host: GitHub
- URL: https://github.com/nurettintopal/nodejs-graphql
- Owner: nurettintopal
- License: mit
- Created: 2019-10-24T14:09:21.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2024-06-20T23:13:28.000Z (almost 2 years ago)
- Last Synced: 2025-03-28T02:23:48.104Z (about 1 year ago)
- Topics: graphql, graphql-apollo, graphql-server, graphql-server-boilerplate, nodejs
- Language: JavaScript
- Homepage: https://medium.com/@nurettintopal/node-js-i%CC%87le-graphql-server-olu%C5%9Fturma-a3de92c773f3
- Size: 319 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Node.js GraphQL Server  [](https://github.com/nurettintopal/nodejs-graphql-server/blob/master/LICENSE)
==============================================
GraphQL Server Boilerplate for Node.js

## usage
install dependencies:
```sh
$ npm install
```
run:
```sh
$ npm run start
```
open a browser and go to:
```sh
http://localhost:4000/graphql
```
## tests
run:
```sh
$ npm run test
```
## build
run:
```sh
$ npm run build
```
## usage with docker-compose
build image:
```sh
$ docker build -t nodejs-graphql-server .
```
run container:
```sh
$ docker run -d -p 4000:4000 nodejs-graphql-server
```
open a browser and go to:
```sh
http://localhost:4000/graphql
```
## contributing
```note
cooming soon...
```
## license
nodejs-graphql-server is open-sourced software licensed under the [MIT license](LICENSE).