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 🙏

© 2024 – Pkg Stats / Ryan Hefner

node-red-contrib-vban

v1.2.5

Published

Nodes to interact with vban protocol

Downloads

574

Readme

node-red-contrib-vban

This node is here to interact with VBAN .

VBAN is a protocol used by VB-Audio software products ( Voicemeeter / VB-Cables / MT-128 and other )

So, you can :

  • control your node-red from a MIDI keyboard (vban-receive-midi-or-serial)
  • update a midi keyboard from your node-red (vban-send-midi-or-serial)
  • Use macro from voicemeeter in node-red ? (vban-receive-text)
  • Or send a macro to voicemeeter (to play a sound on your computer for example) ? (vban-send-text)
  • and many others functions

Feel free to open an issue if you have a question

Examples

Some examples are available directly in node-red : Menu => Import => Examples => node-red-contrib-vlan

And you can get more information in the Examples folder


Security

A point about security.

VBAN can allow you to run programs on the other computer, so without security, it can allow an attacker to take the control of your computer .

Doesn't forget to allow only some senders, and doesn't accept packet from all ips .

Developpers / Contributing

Adding nodes to this library is pretty easy .

First, be sure to have a ready node-red environnement (follow install tutorial), then clone the repos and install it in node-red config directory with a local module npm i /home/thib3113/repo/ .

Then, you can create a new node, you can check the example of VBANReceiver :

  • Run the command : gulp createNode --n=my-node-name (replace my-node-name by your node name, using kebab-case)
  • A file MyNodeName.ts will be created in src/nodes (`MyNodeNameis the PascalCase version of my-node-name)
    • check it parents to check the functions available for your node
    • type of the node will be in src/types/TMyNodeNameNode.ts (part that will be exported to other nodes)
    • typed config/definition for the node will be in src/types/TMyNodeNameNodeConfig.ts
  • A file MyNodeName.html will be created in src/nodes, it's the configuration UI part of your node, where you can set the option you need (doesn't forget to add them to src/types/TMyNodeNameNodeConfig.ts too)

This library use the nodejs library VBAN, feel free to read the documentation here .

When you are ready, open a PR

Thank you

Donations

more informations here