npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

n8n-nodes-etc-osc

v0.1.5

Published

n8n nodes for controlling ETC Eos lighting consoles via OSC

Downloads

554

Readme

n8n Nodes for ETC Eos OSC Control

This package provides n8n workflow nodes for controlling ETC Eos lighting consoles via OSC (Open Sound Control).

Installation

To install this package in your n8n instance:

  1. From npm:

    npm install n8n-nodes-etc-osc
  2. Local/development install:

    cd n8n_etc_node
    npm run build
    npm pack
    # Install the generated tgz file in n8n via the community nodes interface

Available Nodes

ETC OSC Channel Control

Control channel intensity levels and basic parameters with support for:

  • Standard percentage levels (0-100%)
  • Full intensity and zero intensity shortcuts
  • Remdim level setting
  • Fade time support for level changes

ETC OSC Cue Control

Fire and manage cues with:

  • Fire specific cues by number (e.g., "1", "2.5")
  • Go button functionality
  • Cue recording capability

ETC Console Command

Send ETC console-style commands using command-line syntax:

  • Execute console commands (e.g., "Chan 1 At 50", "Go", "Blackout")
  • Automatic command termination with "Enter"
  • Full command-line interface support
  • Best for complex multi-step commands

ETC OSC Command (Raw)

Send raw OSC messages using full OSC syntax:

  • Custom OSC addresses (e.g., /eos/chan/1, /eos/cue/1/fire)
  • Typed arguments (integers, floats, strings)
  • Direct OSC protocol control
  • Formatted argument parsing (comma-separated)
  • Advanced OSC message construction

Configuration

Each node requires:

  • Host: IP address of the Eos console (default: 127.0.0.1)
  • Port: OSC receiving port (default: 3032)

Enable OSC in your Eos console via: Shell → Settings → Network → OSC RX

Usage Example

Create a workflow that:

  1. Receives a webhook trigger
  2. Uses "ETC OSC Channel Control" to set Channel 1 to 50%
  3. Uses "ETC OSC Cue Control" to fire Cue 5
  4. Logs success/failure status

Supported Eos Versions

  • Eos Family v3.0+
  • ETCNomad v3.0+

Development

To modify and build the nodes locally:

cd n8n_etc_node
npm install
npm run build

License

MIT

Contributing

Contributions welcome! Please submit issues and pull requests to the GitHub repository.

Resources