https://github.com/youfoundron/crypto-pricefeed
Crypto pricefeed API example using Nomics and GraphQL
https://github.com/youfoundron/crypto-pricefeed
Last synced: about 1 year ago
JSON representation
Crypto pricefeed API example using Nomics and GraphQL
- Host: GitHub
- URL: https://github.com/youfoundron/crypto-pricefeed
- Owner: youfoundron
- Created: 2018-12-21T02:21:27.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-11T17:01:39.000Z (over 7 years ago)
- Last Synced: 2025-04-12T18:04:49.747Z (over 1 year ago)
- Language: JavaScript
- Size: 60.5 KB
- Stars: 2
- Watchers: 2
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Crypto Price Feed Using Nomics & GraphQL
This is source code for the tutorial written [here](https://medium.com/tokensoft/write-your-own-crypto-price-feed-api-in-10-minutes-with-nomics-and-graphql-a4cb29e76fdf).
It was made possible by several open-source tools.
Some of these include:
* [axios](https://github.com/axios/axios), promise based HTTP client for the browser and node.js
* [backpack](https://github.com/jaredpalmer/backpack), minimalist Node.js build system
* [memoizee](https://github.com/medikoo/memoizee), complete memoize/cache solution for JavaScript
* [graphql-yoga](https://github.com/prisma/graphql-yoga), fully-featured GraphQL Server with focus on easy setup
## Installation
Use npm to install dependencies:
`$ npm install`
## Demo & Playground UI
To run the GraphQL server locally and inspect the playground UI:
`$ npm run dev`
Then visit [localhost:4000](http://localhost:4000) in your browser.
## Building
Use backpack to create your bundle.
`$ npm run build`
## Running in Production
Use backpack to run in production.
`$ npm run start`