is this package available outside of react , angular , vue ?
i am building app using vanilla js can i use it ?
By default, there is no out of the box support for using JsonForms in vanilla JS. Only the @jsonforms/core
package is independent of any UI framework.
Thus, you would need to implement your own bindings and renderer set for a plain JS application. You can reuse @jsonforms/core
for this. See JsonForms’s architecture here: Architecture - JSON Forms
If you can just not use React, Vue, or Angular at the root level of your application, you can consider embedding JsonForms renderered with one of these technologies in your application. In the case of React, see the official documentation how you can embed React into an existing webpage: Add React to an Existing Project – React
Hope that helps,
Lucas