reaper-osc
TypeScript icon, indicating that this package has built-in type declarations

0.5.0 • Public • Published

reaper-osc

A Node.js library for controlling Cockos Reaper using Open Sound Control (OSC).

API Reference

You can find the API documentation here

Installation

Yarn: yarn add reaper-osc npm: npm i reaper-osc

Basic usage

import {Reaper} from 'reaper-osc';

var reaper = new Reaper();

// Start listening for messages
await reaper.start()

// Subscribe to state changes
reaper.tracks[0].onPropertyChanged('isMuted', () => {
  console.log(`Track 1 was ${reaper.tracks[0].isMuted ? 'muted' : 'unmuted'}`);
});

reaper.transport.play();
reaper.tracks[0].mute();
reaper.tracks[0].unmute();

Package Sidebar

Install

npm i reaper-osc

Weekly Downloads

79

Version

0.5.0

License

MIT

Unpacked Size

103 kB

Total Files

27

Last publish

Collaborators

  • lykaiosnz