Guides (Work in Progress)
Quick Start
Get started with React-Plug and learn how to use cargo-generate to create a new plugin from an existing minimal template.
Make sure that you have the rust toolchain. If not, install it from rustup.rs.
If you don’t already have one, install a node.js package manager / toolkit, such as npm, pnpm, yarn, or bun.
Install
cargo-generate
, if you haven’t already.Generate a new React-Plug plugin.
Change directories into your newly generated plugin. You can build and bundle it by running:
This will bundle your plugin to your-plugin/target/bundled/<your-plugin>
. You can now load this plugin in your DAW.
🎉 That’s it! You’re ready to start developing your plugin!
On this page
Introduction