vstjs
<p align="center"> <img width="200" src="https://raw.githubusercontent.com/ramirezd42/vst-js/master/logo.png"> </p>
What Is It?
vst.js is a native NodeJS addon that can be used to launch VST3 plugins (including GUI interface) in a separate process.
WARNING:
This library is in an extremely experimental state. Large portions of functionally have yet to be implemented and it is currently only buildable for OSX devices, although since everything is built with crossplatform libraries, building for other operating systems shouldn't be too difficult.
Additionally, I'm learning C++ by developing this project. If you have any criticisms on my approach or code quality I'd love to hear them.
Installation
Install CMake
vst.js uses CMake as its build system and requires it be present on your system before installing. On a Mac the easiest way to install CMake is via homebrew:
> brew install cmake
Install Boost 3.6+
vst.js makes use of the popular Boost C++ Framework. It expects that version 3.6 or higher is available on your system prior to installation. The easiset way to install the Boost framework on a Mac is via homebrew:
> brew install boost
Acquire the Steinberg VST3 SDK (3.6.7+)
Due to licensing concerns I am currently not bundling the VST3 SDK along with this project. You will need to download the SDK from Steinbergs's Website and place it at ~/SDKs/VST3
You can also specify the installed location of the VST3 SDK by setting a the VST3_SDK_PATH
environment variable prior to installation
NPM Install
Once all the above dependencies have been satisfied you can install via npm:
> npm install vstjs
Usage Examples
The example below will play back an audio file via node-web-audio-api, and manipulate the audio via a VST3 plugin
const AudioContext = const Speaker = const fs = const path = const vstjs = const bufferSize = 512const numChannels = 2const pluginPath = processargv2const filePath = processargv3 const pluginHost = vstjspluginHoststart // setup webaudio stuffconst audioContext = const sourceNode = audioContextconst scriptNode = audioContext audioContextoutStream = channels: audioContextformatnumberOfChannels bitDepth: audioContextformatbitDepth sampleRate: audioContextsampleRate sourceNodescriptNode scriptNode { const inputBuffer = audioProcessingEventinputBuffer const channels = ...ArraynumChannels // process audio block via pluginHost pluginHost audioProcessingEventoutputBuffer = inputBuffer} fs