Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/noahm/featured-follow-button
A simple twitch extension which can display and update follow buttons in real time
https://github.com/noahm/featured-follow-button
twitch twitch-extensions
Last synced: about 2 months ago
JSON representation
A simple twitch extension which can display and update follow buttons in real time
- Host: GitHub
- URL: https://github.com/noahm/featured-follow-button
- Owner: noahm
- License: other
- Created: 2018-01-31T23:12:14.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-29T08:50:50.000Z (about 2 years ago)
- Last Synced: 2024-08-04T23:09:58.148Z (5 months ago)
- Topics: twitch, twitch-extensions
- Language: TypeScript
- Homepage: https://dashboard.twitch.tv/extensions/ih4ptg04wzw6nf4qms0612b8uj0tbh
- Size: 1.6 MB
- Stars: 8
- Watchers: 4
- Forks: 2
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Featured Follow Button
A simple extension for Twitch supporting a full video overlay, or use as a component or panel!
Install it on your own channel here:
https://dashboard.twitch.tv/extensions/ih4ptg04wzw6nf4qms0612b8uj0tbh## Frontend
### Local Dev
You will need your own extension on twitch in local dev mode.
Under Asset Hosting, configure the viewer path to `viewer.html`,
the config path to `config.html`, and the live config path
to `dashboard.html`.```sh
cd frontend
npm install
npm start
```### Publishing
```sh
cd frontend
npm install
npm run build
```Upload the output zip file to twitch.
Tag with the version once released. `git tag -a -m "v1.0.0" v1.0.0 && git push --tags`