From a7af92816c0c64450a336f4237548727dfdffe4f Mon Sep 17 00:00:00 2001 From: njenkins Date: Sat, 14 May 2016 15:33:50 +1000 Subject: [PATCH] Update VSTHost require path to work with npm installed module --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 44a44c5..acaa7e2 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ npm install node-vst-host ### Usage ```javascript -var VSTHost = require("./node-vst-host").host; +var VSTHost = require("node-vst-host").host; var host = new VSTHost(); @@ -25,4 +25,4 @@ host.listPlugins( function(names) { // Process an audio file with a VST plugin host.processAudio( "C:/inputFile.wav", "C:/outputFile.wav", ["plugin1", "plugin2"] ); -``` \ No newline at end of file +```