Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/olange/graphql-bootstrap
- Owner: olange
- License: other
- Created: 2016-11-23T20:25:10.000Z (almost 8 years ago)
- Default Branch: main
- Last Pushed: 2022-01-29T07:21:22.000Z (almost 3 years ago)
- Last Synced: 2024-10-18T23:13:09.719Z (about 1 month 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
[![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/).