Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pret-a-porter/chat-server
https://github.com/pret-a-porter/chat-server
Last synced: about 6 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/pret-a-porter/chat-server
- Owner: pret-a-porter
- License: mit
- Created: 2017-03-11T23:39:41.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-03-16T19:35:38.000Z (over 7 years ago)
- Last Synced: 2024-10-25T16:14:28.218Z (14 days ago)
- Language: JavaScript
- Size: 34.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Hello World server
The server that is used for the examples on dev.apollodata.com.
This is a really simple GraphQL server that uses [Apollo Server](https://github.com/apollostack/apollo-server) and [GraphQL Tools](https://github.com/apollostack/graphql-tools) to serve a simple schema.
It uses a very simple in-memory database, so if you restart the server or change the code, the data will reset.
## Installation
Clone the repository and run `npm install`
```
git clone https://github.com/apollostack/frontpage-server
cd frontpage-server
npm install
```## Starting the server
```
npm start
```The server will run on port 8080. You can change this by editing `server.js`.