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 🙏

© 2026 – Pkg Stats / Ryan Hefner

node-red-contrib-noxy

v1.0.5

Published

Voxta Nodes Package

Readme

node-red-contrib-noxy

A collection of custom Node-RED nodes designed for easy integration between Voxta and Node-RED. This pack includes:

  1. Voxta Actions: Register actions with Voxta.
  2. Voxta Messages: Send messages to Voxta.
  3. Voxta Keys: Send VK formatted instructions for triggering local keystrokes.
  4. Noxy Sequencer: Create a sequence of events with or without fixed or random delays that can be stopped and reset at any time.
  5. Voxta Context: Manage context entries dynamically for Voxta.

Overview

This package provides a set of nodes that enable seamless integration of Voxta logic into Node-RED, allowing users to graphically create and manage actions, messages, and keystroke events. When combined with Noxy-Red, these nodes facilitate rich interactions between Voxta and the local system through MQTT.

Key Components

  • Noxy-Red handles MQTT in/out connections between Voxta and Node-RED using noxy-red.api.
  • Voxta Nodes (Actions, Messages, Keys, Contexts) provide an intuitive graphical interface for managing various functionalities and logic.

Nodes in This Pack

1. Voxta Actions

The Voxta Actions node allows users to register actions with Voxta, such as commands to be executed at various stages of a conversation.

  • Action Registration: Add, modify, or remove actions.
  • Default Values: Choose from common action triggers like "AfterUserMessage", "BeforeAssistantMessage", etc.
  • Multi-Select for Arrays: Add multiple options for actions, including dynamic add/remove functionality.

For more details on actions, refer to Voxta Actions Documentation.

2. Voxta Messages

The Voxta Messages node allows users to send text messages back to Voxta from within Node-RED.

  • Message Types: Send back user-defined messages, which Voxta can process.
  • Short References: Use short references for easy recall and linking of multiple messages.

For detailed information about messages, see the Voxta Messages Documentation.

3. Voxta Keys

The Voxta Keys node is used to send VK (Virtual Key) formatted instructions to noxy-red.api to trigger keystrokes on the machine running Noxy-Red. This is especially useful for triggering local system interactions based on inputs to Voxta.

  • Virtual Key Mapping: Map incoming text or number payloads to virtual keys, including modifier keys (CTRL, ALT, SHIFT).
  • Use Case: Ideal for simulation games or automation environments where inputs need to trigger specific keystrokes.

4. Noxy Sequencer

The Noxy Sequencer node is designed to sequentially execute a series of actions with optional delays, providing a simple yet powerful way to automate tasks in a defined order. It is particularly useful for applications requiring a timed sequence of operations, such as controlling devices, triggering multiple actions, or introducing delays between outputs. Features:

Sequential Execution: The node processes each element in the defined sequence, executing them one by one, until the end is reached.

Configurable Elements:

  • Output Action: Sends a specified message to the output. Use a switch node to route the "output" action as needed.

  • You can configure the output type as a string, number, boolean, or JSON.

  • The value to be sent can also be customized, making it flexible for various use cases.

  • Delay Action: Introduces a delay before moving on to the next action.

  • The delay can be fixed (e.g., 3 seconds) or set to a random range (e.g., between 2 and 5 seconds).

  • Time units available are milliseconds (ms), seconds (s), or minutes (min).

Stop Functionality:

  • If the sequencer receives a message payload of "stop!", the current sequence is immediately terminated, and the node resets to the beginning.
  • This is useful for stopping a sequence mid-execution, effectively resetting the state.

Visual Representation: Each sequence element (output or delay) can be added, edited, or reordered visually. The interface allows easy dragging and dropping of elements to arrange the sequence as desired.

5. Voxta Context

The Voxta Context node allows users to dynamically manage context entries within Voxta. It provides the ability to add, remove, and modify context values based on input messages.

  • Triggering the Node:
    • Sending a message with a payload containing the context name will activate and send that context.
    • If the context name ends with !, it will be marked as disabled (Disabled: true).
    • Otherwise, it will be enabled (Disabled: false).

Example Messages:

// Adding a context
{
    "payload": "test_context"
}

// Removing a context
{
    "payload": "test_context!"
}
  • Dynamic Contexts: Each added context entry is unique and stored per node.
  • Dropdown Management: Users can add, remove, and edit context keys dynamically.
  • Flags Support: Optionally attach flags to context messages.

Installation

To install the node-red-contrib-noxy in Node-RED:

  • Download the as a ZIP file
  • create a folder like: \docker-stack\nodered\data\node_modules\node-red-contrib-noxy
  • copy content of the ZIP file into this folder
  • restart the Docker Stack or Node-Red instance in Docker Desktop to load the new integration

Note: If you install a new node over the palette, you got to repeat the steps. Once the Version is finalized it will be integrated so you don't have to, but for now it's a "WIP"