The RockSmith Playlist Manager is a NodeJS application that was built to automatically sort viewer requests to reduce strain on streamers and their moderators within RSPlaylist.
- Download NodeJS.
- Clone the repository.
- Run
npm install
. - Run
npm run dev
. - Authenticate via Twitch.
- Sit back and relax (so long as the application does not crash).
- This application requires NodeJS.
- This application is a work in progress, thus there may be unexpected behaviors and errors.
- This application is semi-automated.
- Every launch requires authentication. See instructions below to avoid needing to sign into Twitch.
- This application is not user friendly.
- This application only has a single method of sorting playlists.
- This application is not optimized.
This grants this application full control over your personal chrome, this includes extensions, passwords, history, and all other browser features/functionality. Use this functionality at your own risk.
- Launch chrome with the remote debugger enabled (example commands below)
- Mac OS:
/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --remote-debugging-port=9222
- Windows:
C:\Program Files (x86)\Google\Chrome\Application\chrome.exe --remote-debugging-port=9222
- If the above commands do not work, navigate
chrome://version
to get the executable path then append
- Mac OS:
- Copy the link which chrome outputs (e.g.
ws://127.0.0.1:9222/devtools/browser/90427eee-2680-4ff6-a3f7-c81908439484
) - Start
rs-playlist-manager
CHROME_REMOTE_DEBUGGER_URL=YOUR_URL npm run dev