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

os2l

v1.0.6

Published

NodeJS implementation of the Open Sound to Light protocol

Downloads

166

Readme

os2l

NodeJS implementation of the Open Sound to Light protocol.

The standard is defined here. This package was only tested on Windows with VirtualDJ.

Installation

npm install os2l

Usage

For servers

Usually the DMX software:

const { OS2LServer} = require("os2l");

// All options are optional
let server = new OS2LServer({
  port: 5000 // TCP Port to listen on
});

// Register events
server.on("error", err => {
  console.error(err);
});

server.on("btnOn", name => {
  if (name == "fog") {
    // ... code for starting a fog machine
    server.feedback("fog", "on");
  }
});

server.on("btnOff", name => {
  if (name == "fog") {
    // ... code for stopping a fog machine
    server.feedback("fog", "off");
  }
});

server.on("beat", data => {
  // Toggle light or something
});

// Start the server
server.start().then(() => {
  console.log("Server is now listening on port: ", server.port);
});

For clients

Usually the audio software:

const {OS2LClient} = require("os2l");

let client = new OS2LClient();
client.on("error", err => console.error(err));

client.on("feedback", data => {
  // Let a button light up or something
});

client.connect().then(() => {
  client.buttonOn("hi");
  client.beat(true, 1, 120);
});

Hosting on Windows

To host on windows, "Bonjour Print Services" or the SDK needs to be installed on the host system. It is needed for DNS service discovery. When addresses and ports are given manually, this is not needed.

I don't like that we need to depend on an Apple product for this to work. A DNS-SD service is already implemented in windows 10 but is not accessible to us. This is a good starting point to dig deeper and maybe find a solution.

Hosting on Linux

To work on Linux, "Avahi" is needed for DNS-SD. (Not tested)

Hosting on MacOS

On MacOS it will work by default. (Not tested)

Limitations

The characters { and } in strings like button names may produce errors during parsing of incoming packet data. However, when starting with an open bracket and matching the count with closing brackets after that should work. So a name like Very{cool}button is still a valid parsable name.

API

OS2LServer

let server = new OS2LServer({
  port: 1806, // Port for the server to listen on
  doPublish: true // (optional) Use DNS-DS?
});

Event: error

Emitted when an error occours. After this event was called the server will stop and needs to be opened manually via server.start().

Event: warning

Emitted when something happens that should not happen but the server can stay open.

Event: connection

Emitted when a connection from a client was made.

Event: closed

Emitted after the server was closed. Is also called when the server stops because of an error.

Event: btnOn

Emitted when a button is pressed. First argument is the name of the button.

Event: btnOff

Emitted when a button is released. First argument is the name of the button.

Event: cmd

Emitted when a command was send by a client. First argument is the received object.

Event: btn

Emitted when a client changes the state of a button. First argument is the received object.

Event: beat

Emitted when a client sends a beat packet. First argument is the received object.

Event: data

Emitted when anything comes from the client. First argument is the received object. This event can be used to extend the protocol.

server.start()

Starts the server

server.stop()

Stops the server

server.feedback(name, state, page)

Sends feedback to all clients. The arguments are defined in the standard.

OSL2Client

let client = new OS2LClient({
  port: 1806, // (optional) The port to connect to
  host: "localhost", // (optional) Hostname of the server
  useDNS_SD: false, // (optional) Use DNS-SD? Is this is set to true, host and port are determined automatically.
  autoReconnect: true, // (optional) Reconnect after connection lost?
  autoReconnectInterval: 1000 // (optional) Milliseconds between tries when auto reconnect in true
});

Event: error

Emitted after an error occours.

Event: connected

Emitted after a connection was made.

Event: closed

Emitted after the connection ended.

Event: feedback

Emitted when the server sends feedback. The arguments are name, state and page. When no page was given this argument is undefined as this argument is optional to the standard.

client.beat(change, pos, bpm)

Sends a beat to the server. Arguments are defined in the standard.

client.buttonOff(name)

Sends a btnOff event to the server. First argument is the name of the button.

client.buttonOn(name)

Sends a btnOn event to the server. First argument is the name of the button.

client.close()

Closes the connection.

client.command(id, param)

Sends a command to the server. id (Integer) is the id of the command and param a number between 0 and 1.

client.connect()

Connects to the server. When no server data is given, this method searches for the server with DNS-SD.

client.custom(object)

Sends a custom object to the server. This method can be used to extend the protocol.

License

MIT