https://github.com/olange/graphql-bootstrap
  
  
    GraphQL, Express and CoffeeScript bootstrap project template 
    https://github.com/olange/graphql-bootstrap
  
        Last synced: 8 months ago 
        JSON representation
    
GraphQL, Express and CoffeeScript bootstrap project template
- Host: GitHub
- URL: https://github.com/olange/graphql-bootstrap
- Owner: olange
- License: other
- Created: 2016-11-23T20:25:10.000Z (almost 9 years ago)
- Default Branch: main
- Last Pushed: 2022-01-29T07:21:22.000Z (almost 4 years ago)
- Last Synced: 2024-12-30T21:28:45.499Z (10 months ago)
- Language: CoffeeScript
- Homepage:
- Size: 5.86 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
- 
            Metadata Files:
            - Readme: README.md
- License: LICENSE.md
 
Awesome Lists containing this project
README
          # GraphQL bootstrap
An empty GraphQL, Express and CoffeeScript project template, to bootstrap development.
## Setup
```bash
$ cd graphql-bootstrap
$ npm install
````
## Run the app server
Launch the server:
```bash
$ npm -s start
```
or alternatively, to watch the source code and restart the server on changes:
```bash
$ npm -s run watch
```
Then open a browser at http://localhost:4000 and try following [GraphQL query](http://graphql.org/learn/queries/):
```raw
query greetings {
  greeting1: hello
  greeting2: hello( who: "You")
}
```
## License
[](http://creativecommons.org/licenses/by-sa/4.0/)
[GraphQL bootstrap](https://github.com/olange/graphql-bootstrap) de Olivier Lange est mis à disposition selon les termes de la licence [Creative Commons Attribution - Partage dans les Mêmes Conditions 4.0 International](http://creativecommons.org/licenses/by-sa/4.0/).