Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
ableton-live
Advanced tools
A library for communicating with Ableton Live via WebSockets, works both in Node and in the Browser.
A library for communicating with Ableton Live via WebSockets, works both in Node and in the Browser.
npm install --save ableton-live
Drag and drop external/LiveAPI.amxd
to any track in Ableton Live (f.ex, Master Track)
Done!
import { AbletonLive } from 'ableton-live';
// polyfill for a browser API compatible WebSocket
if (process) {
global.WebSocket = require('ws');
}
import { AbletonLive } from 'ableton-live';
// or
const { AbletonLive } = require('ableton-live');
import { AbletonLive } from 'ableton-live';
const live = new AbletonLive();
const main = async () => {
try {
await live.connect();
const tracks = await live.song.children('tracks');
const clips = await tracks[0].getClips();
const notes = await clips[0].getNotes();
notes.forEach(note => console.log(note.pitch));
} catch (error) {
console.error(error);
}
};
main();
Found at https://ricardomatias.net/ableton-live/
A loose fork of ableton-js, which was a great source of inspiration on how to approach handling Live's Object Model.
When not receiving try running sudo lsof -i :send_port_number
and make sure only Max is using it.
FAQs
A library for communicating with Ableton Live via WebSockets, works both in Node and in the Browser.
The npm package ableton-live receives a total of 9 weekly downloads. As such, ableton-live popularity was classified as not popular.
We found that ableton-live demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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 malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.