monkberry icon indicating copy to clipboard operation
monkberry copied to clipboard

Monkberry is a JavaScript library for building web user interfaces

Results 26 monkberry issues
Sort by recently updated
recently updated
newest added

Hey there, :slightly_smiling_face: this PR adds support for Gitpod, a free online tool that lets you automate your dev environment, eases the hurdles for contributions and generally working on GitHub...

Hey Guys, I am trying to use monkberry in one of my projects and I can see I can Import a child template like so: ``` twig {% import child...

Hello, how to write integration tests for components? Some examples in the documentation would be very helpful. Thanks :)

There is three methods that seem to act as lifecycle methods on the components: onRender, onUpdate and onRemove. But the Monkberry constructor is setting them to null, and then the...

enhancement

it should really be possible to use something like this to load templates: since im in our current environment where not able to use the "import Template from 'template.monk';" thing...

Hello, I specified global variable in monkberry-loader settings, I can print this variable in template expression like {{myGlobalVar.param1}} however {% if myGlobalVar.param1 %} throws compilation error...

https://github.com/antonmedv/monkberry/blob/e2e7cc46d4f9ccbf0cf3a995fdc988b50dabf652/monkberry.js#L117-L125

My main use case is with a template with one root element. For example: {{ title }} {{ body }} Then, I need to create the DOM element as a...

Hi, thanks for this amazing template engine. Here is a suggestion. I currently use events with this kind of code: import Template from './Template.monk'; let state = { someStateVariable: 'abc',...

How the engine detects what DOM should be changed on update without virtual-dom?

question