0.5.0 • Published 1 month ago

reaper-osc v0.5.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month ago

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();
0.5.0

1 month ago

0.3.0

2 months ago

0.4.0

2 months ago

0.3.1

2 months ago

0.2.0

2 years ago

0.1.2

3 years ago

0.1.1

3 years ago