![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
ableton-js
Advanced tools
Ableton.js lets you control your instance or instances of Ableton using Node.js. It tries to cover as many functions as possible.
To use this library, you'll need to install and activate the MIDI Remote Script in
Ableton.js. To do that, copy the midi-script
folder of this repo to Ableton's
Remote Scripts folder. If you prefer, you can rename it to something like AbletonJS
for better identification. The MIDI Remote Scripts folder is usually located at:
After starting Ableton Live, add the script to your list of control surfaces:
This library exposes an Ableton
class which lets you control the entire
application. You can instanciate it once and use TS to explore available features.
Example:
import { Ableton } from "ableton-js";
const ableton = new Ableton();
const test = async () => {
ableton.song.addListener("is_playing", p => console.log("Playing:", p));
ableton.song.addListener("tempo", t => console.log("Tempo:", t));
const cues = await ableton.get("cue_points");
console.log(cues.map(c => c.raw));
};
test();
29 May 2019
FAQs
Control Ableton Live from Node
The npm package ableton-js receives a total of 0 weekly downloads. As such, ableton-js popularity was classified as not popular.
We found that ableton-js 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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.