You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Mavo’s formula language is useful even outside of Mavo, and it may be nice to move to a separate library.
This will enable people to integrate it in other apps and frameworks, and will also improve maintainability through separation of concerns. https://github.com/mavoweb/mavo/blob/main/src/functions.js
We still need to come up with a name (see #1011 )
Right now, these are the parts that would be moved there:
Moving the compiler is likely far easier than moving the runtime, so we can start with that. I suspect a lot of this would be easier once we move to Vue (or another reactivity engine) and don't have to manage the reactivity ourselves (poorly).
This will be about compiling individual expressions, not interpolation with strings, so probably wouldn't include much code from
Mavo’s formula language is useful even outside of Mavo, and it may be nice to move to a separate library.
This will enable people to integrate it in other apps and frameworks, and will also improve maintainability through separation of concerns.
https://github.com/mavoweb/mavo/blob/main/src/functions.js
We still need to come up with a name (see #1011 )
Right now, these are the parts that would be moved there:
Moving the compiler is likely far easier than moving the runtime, so we can start with that. I suspect a lot of this would be easier once we move to Vue (or another reactivity engine) and don't have to manage the reactivity ourselves (poorly).
This will be about compiling individual expressions, not interpolation with strings, so probably wouldn't include much code from
The text was updated successfully, but these errors were encountered: