Getting Started
To get started with React-JUCE, you'll first need to install a few dependencies:
Once you have the dependencies installed, we need to clone the React-JUCE repository itself. React-JUCE's git repository contains necessary submodules, so we'll need to collect those as well, which we can do one of two ways:
$ git clone --recurse-submodules [email protected]:nick-thompson/react-juce.git
or
$ git clone [email protected]:nick-thompson/react-juce.git
$ cd react-juce
$ git submodule update --init --recursive
Note that the
[email protected]
prefix here indicates cloning via SSH. If you prefer to work with git via HTTPS you'll want to swap in https://github.com/nick-thompson/react-juce.git
in the above commands.At this point, we've got everything ready to get our project up and running. Let's move on to the next step, running the demo plugin.
Last modified 2yr ago