Today we released the latest edition of our Monster project. Monster is a collection of javascript classes that we need for daily work in our web projects.
Besides small helper functions and classes, it also provides useful functions to enable reactive programming.
Monster is available via jsdelivr and npm.
Only the highlights are described here. The full functionality can be found in the documentation.
Configuration via script tag
Besides the possibility to specify configurations of CustomElements by attribute, the configuration can now also be specified by script tag.
<script id="config1"
type="application/json">
{
"key": "value"
}
</script>
<monster-tag
data-monster-options-selector="#config1">
</monster-tag>
hope you enjoy it!
Top comments (0)