13 comments

[ 1.8 ms ] story [ 41.1 ms ] thread
Demo doesn't work on my iPhone 6 on iOS 10, I just get the template string
I wonder what Safari's problem is?

It works just as well as Vue on my Android in Firefox, Chrome and even the Android Browser.

> I wonder what Safari's problem is?

I wonder that a lot about Safari, particularly mobile Safari.

Not sure what the problem is, all tests for Moon pass on Safari, and it works on my iPhone 6s on iOS 10.

Can you let me know if any demos in the Getting Started[1] guide work?

[1] http://moonjs.ga/docs/getting-started.html

I tried again on Wi-Fi and it worked, I was on a spotty LTE connection, it might have just failed to load
Must've been it, thanks.
I had a very quick glance but it seems that RE:DOM is smaller, better documented and more mature (but probably otherwise similar). https://redom.js.org
Moon's benefit, that I can see, is Vue's syntax.
I honestly don't see much similarity
Yes, but Moon's goal is to have syntax similar to Vue's, and as a result, requires an HTML template compiler, Javascript expression compiler, directive compiler, and different component logic.

RE:DOM doesn't have any of these, but only has a virtual DOM engine (which Moon has as well).

with the difference between sizes being a few kb, I don't think that they would entirely matter. What really does is execution rate. Which one performs more efficiently. If the end result is DOM, it doesn't matter what syntax you're using, the client is the most important part
Are these types of frameworks basically just performant Marionette+Backbone? I always struggle to find a difference.