Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/olange/graphql-bootstrap

GraphQL, Express and CoffeeScript bootstrap project template
https://github.com/olange/graphql-bootstrap

Last synced: 12 days ago
JSON representation

GraphQL, Express and CoffeeScript bootstrap project template

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

[![CC-BY-SA](http://i.creativecommons.org/l/by-sa/4.0/80x15.png)](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/).