Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/orlaqp/graphql-server-hello
https://github.com/orlaqp/graphql-server-hello
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/orlaqp/graphql-server-hello
- Owner: orlaqp
- License: mit
- Created: 2016-10-15T13:55:16.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-10-16T14:53:23.000Z (over 8 years ago)
- Last Synced: 2024-11-02T22:25:34.215Z (3 months ago)
- Language: JavaScript
- Size: 38.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# A quick example of how to use Apollo Server/Client together with Angular 2 with CORs support
### First
```
cd server`
npm install
npm start
```the open an extra terminal window:
```
cd client
npm install
npm start
```Open the development tools (I used a Mac with chrome, so basivally press Cmd + Shift + I). Open the following address:
`http://localhost:8080`
you see the app stop right where the data is retrieved from the server using `graphql`
I hope you can get the idea and use this project to understand how to build your apps using graphql/
Enjoy!