Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/graphql-java/todomvc-relay-java
Relay TodoMVC with Java Backend
https://github.com/graphql-java/todomvc-relay-java
graphql graphql-java todomvc
Last synced: 3 months ago
JSON representation
Relay TodoMVC with Java Backend
- Host: GitHub
- URL: https://github.com/graphql-java/todomvc-relay-java
- Owner: graphql-java
- Created: 2015-08-16T21:57:30.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-11-28T02:08:46.000Z (almost 7 years ago)
- Last Synced: 2024-04-14T06:53:44.795Z (7 months ago)
- Topics: graphql, graphql-java, todomvc
- Language: Java
- Homepage:
- Size: 160 KB
- Stars: 68
- Watchers: 6
- Forks: 25
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-graphql-java - todomvc-relay-java
README
# Relay TodoMVC with a Java Server
This is a port of the [Relay TodoMVC example](https://github.com/facebook/relay/tree/master/examples/todo)
where the GraphQL JavaScript server is replaced with a Java server based on [graphql-java](https://github.com/andimarek/graphql-java).### Running
Starting the frontend:
```bash
cd app
npm install
npm start
```Starting the backend: (running on port 8080)
```bash
./gradlew start
```The app is now available at http://localhost:3000