A small project to compare Twitch streamer data.
View it at https://stream-power-scouter.herokuapp.com/
To run locally:
- Add a new file in the root of the project called config.js. It should export an object as a module that has the properties:
twitchApiRoot= 'https://api.twitch.tv/kraken'
twitchClientId= <ClientId assigned by Twitch>
- Install all the dependencies with
npm install
. - Run the app using either of
npm start
ornode bin/www
.
To build the project after making changes, use npm run build
.
You can also run npm run watch
to constantly build when changes are made.