HISE Docs

Scripting

Scripting provides the glue with which you can access each Module and UIComponent in a Script Processor and mold together more advanced interactions with your instrument.

If you are interested in the dirty details; please consider watching Christophs talk: Javascript for DSP prototyping to learn more about the technical implementation.

Here are some of the most useful purposes of scripting in HISE:

Please have a look at the Recipes to access some handy scripting examples.

Performance

Compared to compiled C++ code, a Javascript engine is rather slow. But for occasional event handling like incoming MIDI data or a timer every 50 milliseconds the JS-engine is absolutely fit for the purpose. This is completely sufficent for the most use cases of audio plugins and virtual instruments. If you don't want to relinquish the performance gains of a native C++ implementation please consider taking a look at C++ API .