New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

reaper-osc

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

reaper-osc

Controls Cockos Reaper using OSC

latest
Source
npmnpm
Version
0.9.0
Version published
Weekly downloads
36
-89.19%
Maintainers
1
Weekly downloads
 
Created
Source

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

Keywords

reaper

FAQs

Package last updated on 22 Mar 2026

Did you know?

Socket

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.

Install

Related posts