Echo JS 0.11.0

<~>

sylvainpv comments

sylvainpv 2529 days ago. link 1 point
Roses are red, violets are blue. 
I'm not native but I saw it too.
sylvainpv 2531 days ago. link 3 points
Magic strings everywhere ? Ugh... A few more arguments for constants:
1. Autocomplete 
2. Autodocumentation (basically having a list of available actions by ctrl+spacing)
3. Namespacing actions (ADD.EVENT.SUCCESS instead of "ADD_EVENT_SUCCESS")
4. Minification. It's easier to mangle constant references than magic strings
sylvainpv 2531 days ago. link 2 points
It's a one man project and you're the man. Please show some humility and less marketing BS.
sylvainpv 2536 days ago. link 2 points
The goal is to evaluate the function with a runtime condition, so that prepack is forced to keep the dynamic evaluation. This can be done with Math.random() or +(new Date()) or many environment properties, but none of them are supported by Prepack. Any runtime-dependent expression throws an IntrospectionError:

console.log(Date[Math.random() > 0 ? "now" : "nope"]())
sylvainpv 2542 days ago. link 2 points
Wow, I think this may be a game-changer. Already got significant gains on many libraries bundles.
sylvainpv 2564 days ago. link 1 point
There is no mention of computed properties in the docs, should we use getter for that ? It seems to work: http://jsbin.com/vihawiziza/edit?html,css,js,output

I really like getters/setters or proxy interfaces for data  handling, it has several benefits regarding autocompletion, type checking and the handling of specific mutations like array splice. This is what sold me with Vue in the first place
sylvainpv 2564 days ago. link 1 point
Yet it misses the best part of Vue, which is magical dependency tracker and getter/setter converter.
sylvainpv 2586 days ago. link 1 point
No, I disagree. Higher Order Components is an abstract concept which can be formalized in different ways as we saw earlier. It relies on the functional nature of components, and so is suitable for both Vue and React, among others.

I gave you a clean and elegant solution in Vue for each of your concerns, yet you decide to camp on your positions rather than admit that you may have a few things to learn about Vue. Too bad, but I cannot help you on this.
sylvainpv 2588 days ago. link 1 point
This is JSX, which is supported by Vue. I already sent you the link to docs in a previous message.
[more]