Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
♪ ♫ ♩ ♬
A node.js wrapper for the RtMidi C++ library that provides realtime MIDI I/O. RtMidi supports Linux (ALSA & Jack), Macintosh OS X (CoreMidi), and Windows (Multimedia).
Installation uses node-gyp and requires Python 2.7.2 or higher.
From npm:
$ npm install midi
From source:
$ git clone https://github.com/justinlatimer/node-midi.git
$ cd node-midi/
$ npm install
var midi = require('midi');
// Set up a new input.
var input = new midi.input();
// Count the available input ports.
input.getPortCount();
// Get the name of a specified input port.
input.getPortName(0);
// Configure a callback.
input.on('message', function(deltaTime, message) {
console.log('m:' + message + ' d:' + deltaTime);
});
// Open the first available input port.
input.openPort(0);
// Sysex, timing, and active sensing messages are ignored
// by default. To enable these message types, pass false for
// the appropriate type in the function below.
// Order: (Sysex, Timing, Active Sensing)
input.ignoreTypes(false, false, false);
// ... receive MIDI messages ...
// Close the port when done.
input.closePort();
var midi = require('midi');
// Set up a new output.
var output = new midi.output();
// Count the available output ports.
output.getPortCount();
// Get the name of a specified output port.
output.getPortName(0);
// Open the first available output port.
output.openPort(0);
// Send a MIDI message.
output.sendMessage([176,22,1]);
// Close the port when done.
output.closePort();
Instead of opening a connection to an existing MIDI device, on Mac OS X and Linux with ALSA you can create a virtual device that other software may connect to. This can be done simply by calling openVirtualPort(portName) instead of openPort(portNumber).
var midi = require('midi');
// Set up a new input.
var input = new midi.input();
// Configure a callback.
input.on('message', function(deltaTime, message) {
console.log('m:' + message + ' d:' + deltaTime);
});
// Create a virtual input port.
input.openVirtualPort("Test Input");
// A midi device "Test Input" is now available for other
// software to send messages to.
// ... receive MIDI messages ...
// Close the port when done.
input.closePort();
The same can be done with output ports.
You can also use this library with streams! Here are the interfaces
// create a readable stream
var stream1 = midi.createReadStream();
// createReadStream also accepts an optional `input` param
var input = new midi.input();
input.openVirtualPort('hello world');
var stream2 = midi.createReadStream(input)
stream2.pipe(require('fs').createWriteStream('something.bin'));
// create a writable stream
var stream1 = midi.createWriteStream();
// createWriteStream also accepts an optional `output` param
var output = new midi.output();
output.openVirtualPort('hello again');
var stream2 = midi.createWriteStream(output);
require('fs').createReadStream('something.bin').pipe(stream2);
Copyright (C) 2011 by Justin Latimer.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
A different license may apply to other software included in this package, including RtMidi. Please consult their respective license files for the terms of their individual licenses.
Version 0.8.0
FAQs
MIDI hardware IO
The npm package midi receives a total of 238 weekly downloads. As such, midi popularity was classified as not popular.
We found that midi demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.