
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
eos-console
Advanced tools
eos-consoleNode.js library to interface with ETC Eos Family lighting consoles, written in TypeScript
Warning
This project is under active development and is not feature complete
EventEmitter instanceThis library is not designed to automatically synchronise with show data like EosSyncLib.
Below are some very brief examples of this library's features.
import { EtcDiscovery } from 'eos-console';
const discovery = new EtcDiscovery();
discovery.on('found', (device: EtcDiscoveredDevice) => {
console.log(`Found console: ${device.name}`);
});
discovery.start();
import { EosConsole } from 'eos-console';
const eos = new EosConsole({ host: 'localhost', port: 3037 });
await eos.connect();
// ...
await eos.disconnect();
const swVersion = eos.getVersion();
const groups = await eos.getGroups();
const cue = await eos.getCue(1, 0.5);
await eos.changeUser(5);
await eos.fireCue(3, 1.4);
await eos.executeCommand('Chan 1 Frame Thrust A 50 Frame Angle A -30');
await eos.executeCommand('Cue 2 Label %1 Enter', ['Command with substitutions']);
eos.on('user-cmd', (userId, cmd) =>
console.log(`User ${userId}: ${cmd}`)
});
eos.on('current-cue', (cueList, cueNumber) => { /* ... */ });
eos.on('osc', ({address, args}) => { /* ... */ });
By default the library will not produce any log output. To enable logging, provide a log handler via the constructor.
const eos = new EosConsole({
logging: (level, message) => console.log(`[${level}] ${message}`),
});
eos-console is licensed under the MIT license. See
LICENSE
for details.
This project is in no way affiliated with ETC.
FAQs
Library to interface with ETC Eos Family lighting consoles.
The npm package eos-console receives a total of 4 weekly downloads. As such, eos-console popularity was classified as not popular.
We found that eos-console demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.