Skip to content

Node.JS Project that watches Twitch streams with Puppeteer and claims rewards. If the channel goes offline, it finds new channels to watch.

License

Notifications You must be signed in to change notification settings

devitcf/TwitchDropGrabber

 
 

Repository files navigation

Twitch Drop Grabber

Node.js application that watches Twitch streams and collects Drops. When the stream it's watching goes offline, it finds a new one. Great for running in the background: Set and forget.


How to install/use

  1. Ensure you have a working installations of Node.js, npm and Google Chrome
  2. Clone the project
  3. Run npm install
  4. Run npm run build to compile the typescript files
  5. Set up the environment variables
  6. Start the project with npm start -- <GAME> where the game is your game of choice that currently has active drop campaigns. Replace <GAME> with the ID of the game in the Twitch directory. (e.g. https:https://twitch.tv/directory/game/fortnite)

More options are available, you can see these using npm start -- --help

Environment Variables

Two environment variables need to be set for this project. You can set these in whatever way you like. I prefer to use a .env file, see .env.example for an example.

The first variable you need to set are TWITCH_AUTH_TOKEN, which you can find by signing in to Twitch in your browser, and finding the auth-token cookie. Do NOT share this with others. This project will only run on your machine, and your auth token will therefore never leave your machine.

NOTE: In light of the recent Twitch leaks, do remember to change your password. This also refreshes your auth token so if the tool stops working, you need to replace it with the new token!

The second variable is TWITCH_CHROME_EXECUTABLE, which should point to your Chrome installation. Make sure this points to the actual application/executable file, and not just the install directory. If this path contains spaces, you can wrap it in quote symbols (e.g. "path goes here"). A good way to find this path is to open Chrome, browse to chrome:https://version/ and look under Executable Path

Disclaimer

I really just made this tiny project for my benefit and don't intend to actively maintain/make changes to it. It works for me and suits my needs. I have no concrete plans to add new features or improvements, however you are free to open pull requests or issues, and I might look at them in my free time.

I might also have some improvements in other branches that I haven't fully tested for myself yet. So you can always try a more 'experimental' branch if something isn't working.

There are some things that would be nice to have though. I might add these myself in the future, but if you feel like it's a fun waste of time, be my guest:

  • A better recovery for slow networks/networks failures
  • A better way of checking if streams are playing.
  • A way to detect channels you are watching going offline and hosting another channel
  • A way to check the channel that is being watched did not switch to a different game
  • An option to configure how many rewards you expect to claim (so the app can terminate once that is reached)
  • A way to detect a faulty auth token and provide feedback
  • Watch a list of certain streamers instead of searching for a channel

Feel free to suggest more.


This concludes what I've wanted to say. Maybe I forgot something, I don't know. Let me know by opening an issue.

I hope this project helps you :)

About

Node.JS Project that watches Twitch streams with Puppeteer and claims rewards. If the channel goes offline, it finds new channels to watch.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 98.0%
  • Shell 2.0%