A nextJS / express server that serves a React component for visualizing twitch clips, similar to what's on twitch.tv
As twitch needs both a client id and a client secret to make requests to its REST api, you need to create a developer account first. Then you need to generate the credentials and put them in a secret.json
at the root of the project like so :
{
"client_id": <my client id>,
"client_secret": <my client secret>
}
Then just run npm run dev
and go to your localhost:3000