New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

artnet-protocol

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

artnet-protocol

Protocol implementation for ArtNet

latest
Source
npmnpm
Version
0.2.1
Version published
Weekly downloads
30
7.14%
Maintainers
1
Weekly downloads
 
Created
Source

Node ArtNet Protocol

GitHub release npm License

ArtNet protocol implementation in Nodejs. The goal is to make a protocol implementation that is as complete and usable as possible. Use-cases for this library are virtual ArtNet clients such as ArtNet Hue Entertainment, or full ArtNet/DMX controllers.

Features

  • Automatic discovery using ArtPoll / ArtPollReply
  • Low-level packet encoder/decoder which can be used as a binary protocol library without all other functionality.
  • Sending/receiving of DMX data (ArtDmx)

Usage

Install Node ArtNet Protocol using NPM:

$ npm install --save node-artnet-protocol

Code usage:

import { ArtNetController } from 'artnet-protocol/dist';
import { ArtDmx } from 'artnet-protocol/dist/protocol';

const controller = new ArtNetController();
controller.bind('0.0.0.0');
// The controller is now listening and responding to discovery traffic

// Send DMX data (Sequence 0, Physical port 0, Universe 0.
controller.sendBroadcastPacket(new ArtDmx(0, 0, 0, [255, 0, 0]));

// Or if you want to receive DMX data
controller.on('dmx', (dmx) => {
    // dmx contains an ArtDmx object
    console.log(dmx.universe, dmx.data);
});

Reference

Keywords

artnet

FAQs

Package last updated on 19 Aug 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts