UNPKG

@codelytv/n8n-nodes-twitch

Version:

n8n node for Twitch: Execute workflows on stream start, stream end, and new follows.

210 lines (160 loc) β€’ 7.6 kB
<p align="center"> <a href="https://codely.com"> <picture> <source media="(prefers-color-scheme: dark)" srcset="https://codely.com/logo/codely_logo-dark.svg"> <source media="(prefers-color-scheme: light)" srcset="https://codely.com/logo/codely_logo-light.svg"> <img alt="Codely logo" src="https://codely.com/logo/codely_logo.svg"> </picture> </a> </p> <h1 align="center"> πŸ›  Twitch node for n8n </h1> <p align="center"> <a href="https://github.com/CodelyTV"><img src="https://img.shields.io/badge/Codely-OS-green.svg?style=flat-square" alt="Codely Open Source projects"/></a> <a href="https://pro.codely.com"><img src="https://img.shields.io/badge/Codely-Pro-black.svg?style=flat-square" alt="Codely Pro courses"/></a> </p> <p align="center"> Trigger workflows on stream start or stream end, search for Twitch streams details… </p> <p align="center"> <a href="https://github.com/CodelyTV/n8n-nodes-twitch/stargazers">Stars welcomed 😊</a> </p> # πŸ‘€ n8n Twitch node features Once installed, you will be able to add Twitch triggers and actions to your n8n workflows. 1. Search for Twitch node: <img alt="Twitch node in the n8n nodes panel" src="/docs/node.png" width="336" height="180"> 2. Select the desired action or trigger: <img alt="Twitch node triggers" src="/docs/node-actions-and-triggers.png" width="336" height="504"> 3. Parametrize it: <img alt="Twitch node parameters" src="/docs/node-parameters.png" width="336" height="350"> # πŸš€ Installation instructions This node is in the process to be officially verified by n8n. The installation process will be as simple as searching for "Twitch" in the nodes panel once we get that verification, but in the meantime, you have several options that depend on how you use n8n. We recommend checking out the [updated n8n instructions on how to install community nodes](https://docs.n8n.io/integrations/community-nodes/installation/) for possible updates to this process. ## a) n8n cloud instance It is not possible to install unverified community nodes in n8n cloud ([documentation](https://docs.n8n.io/integrations/community-nodes/installation/)). Once we get that verification, you will be able to install this node following [this step by step](https://docs.n8n.io/integrations/community-nodes/installation/verified-install/). ## b) Self-hosted n8n instance ### b.a) Not using queue mode: GUI installation Follow [the official instructions](https://docs.n8n.io/integrations/community-nodes/installation/gui-install/) specifying `@codelytv/n8n-nodes-twitch` as the node name to install: <img alt="Twitch community node installation" src="/docs/node-installation.png" width="336" height="241"> ## b.b) Using queue mode ### b.b.a) Install as npm package This is the officially recommended way for self-hosted n8n instances running in queue mode ([documentation](https://docs.n8n.io/integrations/community-nodes/installation/manual-install/). Go to the folder where n8n is installed (if you are using the standard Docker installation, it will probably be: `/usr/local/lib/node_modules/n8n`) and install the package as any other npm package: ```bash npm i @codelytv/n8n-nodes-twitch ``` ### b.b.b) Install as Custom Docker image `Dockerfile` contents example for a custom image with this node added: ```dockerfile ARG N8N_VERSION FROM n8nio/n8n:${N8N_VERSION} RUN if [ -z "$N8N_VERSION" ]; then echo "πŸ’₯ N8N_VERSION argument missing."; exit 1; fi && \ mkdir -p /home/node/.n8n/nodes && \ npm install --prefix /home/node/.n8n/nodes --production --silent @codelytv/n8n-nodes-twitch ``` ### b.b.c) Install using Docker Compose / Docker Swarm with mapped volume Take into account that this option has a considerable downside: The workflows you create will contain `CUSTOM.twitchTrigger` as the node type reference instead of `@codelytv/n8n-nodes-twitch.twitchTrigger`. However, it could be the best approach if you want a faster feedback loop while developing. Take into account that localhost will not be reachable from Twitch, so you `probably are interested into exposing it with a tunnel using something like `cloudflared`, or just expose a remote host to Twitch. Docker Compose / Docker Swarm definition snippet: ```yaml volumes: n8n_data: name: '{{.Service.Name}}_{{.Task.Slot}}' services: n8n-main: volumes: - n8n_data:/home/node/.n8n - /home/codely/n8n-custom-nodes:/home/node/.n8n/custom ``` Deploy process: ```bash CUSTOM_NODES_DIR="$HOME/n8n-custom-nodes" mkdir -p "$CUSTOM_NODES_DIR" docker run --rm \ --user "$(id -u):$(id -g)" \ -v "$CUSTOM_NODES_DIR":/data \ -w /data \ node:22-alpine \ sh -c "npm install @codelytv/n8n-nodes-twitch --production --silent" docker stack deploy -c n8n-swarm.yml n8n ``` # πŸ”‘ How to get Twitch credentials You will need to create a new Twitch application to get Client ID and Client Secret following these steps: 1. Go to the [Twitch Developer Console](https://dev.twitch.tv/console/apps). 2. Log in using your Twitch account credentials. 3. Click on the "+ Register Your Application" button. 4. Fill out the form as follows and click "Create": - Name: Name your app (e.g., β€œn8nTwitchBot”). - OAuth Redirect URLs: Use a valid redirect URL. Something like http://localhost:5678/rest/oauth2-credential/callback works. We do not plan to display Twitch authentication to end users with Oauth. We're only interested in getting the Client ID and Client Secret, so it's fine to specify a local URL. - Category: Application Integration - Client Type: Confidential 5. Get your credentials: - Click on "Manage" - Client ID: Visible right away. - Client Secret: Click "New Secret" to generate one. Be sure to store this securely (it won’t be shown again). # πŸ’» Documentation for node contributors How to locally test this node (based on [the official n8n guide](https://docs.n8n.io/integrations/creating-nodes/test/run-node-locally/)): 1. Clone and move to the node development folder ```bash cd ~/Code/work/codely/public/ git clone git@github.com:CodelyTV/n8n-nodes-twitch.git cd n8n-nodes-twitch ``` 2. Build the node ```bash npm run build ``` 3. Create a npm global symlink to the locally installed package ```bash npm link ``` 4. Install n8n locally: ```bash npm install n8n -g ``` 5. Move to your n8n local installation ```bash cd ~/.n8n/ ``` 6. Create a custom nodes folder ```bash mkdir custom cd custom 7. Link the node package to the symlink previously created ```bash npm link @codelytv/n8n-nodes-twitch ``` 8. Validate that the local n8n instance has the Twitch node pointing to the local folder ```bash tree -L 3 -d ``` Expected output: ```bash . └── node_modules └── @codelytv └── n8n-nodes-twitch -> ../../../../Code/work/codely/public/n8n-nodes-twitch ``` 9. Run n8n ```bash n8n start ``` 10. Enjoy! # πŸ‘Œ Codely Code Quality Standards Publishing this package we are committing ourselves to the following code quality standards: - 🀝 Respect **Semantic Versioning**: No breaking changes in patch or minor versions - 🀏 No surprises in transitive dependencies: Use the **bare minimum dependencies** needed to meet the purpose - 🎯 **One specific purpose** to meet without having to carry a bunch of unnecessary other utilities - πŸ“– **Well documented ReadMe** showing how to install and use - βš–οΈ **License favoring Open Source** and collaboration