VSReacT v0.0.16
The release-polish tier. JS-only; native module unchanged from 0.0.9.
Polish
- npm READMEs for both packages —
@vsreact/coreand
@vsreact/posthogfinally have real registry pages: quick-starts,
the full component index, the architecture picture, and the C++
wiring for analytics. VERSIONexported from@vsreact/core— stamp support dumps
and analytics with the SDK version.
@vsreact/posthog 0.0.6
registerOnce(props)— super properties that never clobber
existing values (safe defaults).
Examples
- Three new example plugins under
vsreact/examples/, each a
complete CMake + React project: synth (PianoKeyboard,
ParamADSREnvelope, wheels, full PostHog integration), drums
(StepSequencer patterns driving a native step clock, RingMeter —
no analytics), and channel (EQCurve bound to APVTS bands,
gain-reduction Meter, Disclosure) — alongside the original gain
quick-start. - StashTrack ships
@vsreact/posthog— editor sessions, parameter
analytics, and error tracking wired end-to-end.
Install
bun add @vsreact/core # or npm install / yarn add / pnpm addFetch the native JUCE module with CMake:
include(FetchContent)
FetchContent_Declare(vsreact
GIT_REPOSITORY https://github.com/N9RecordsTechnologiesIL/VSReacT.git
GIT_TAG v0.0.16
SOURCE_SUBDIR vsreact)
FetchContent_MakeAvailable(vsreact)