Echo JS 0.11.0

<~>

tracker1 comments

tracker1 3446 days ago. link 1 point
Probably the nicest JS formatter I've seen, period, I usually disable auto formatting, mainly because they just mangle my clean code too much.
tracker1 3446 days ago. link 1 point
I replied directly into the article, but one thing bugs me... the two demarkations for ng2+ being "Component structure" and "typescript" are both possible with React.  Though I don't care much for typing, it's an option.

Beyond this, I feel the statement that React doesn't match the ecosystem of Angular disingenuous at best at this point.  React works with the rest of the js/npm ecosystem, with far more third party component options today, let alone regular js modules beyond react.
tracker1 3446 days ago. link 1 point
I can't help but think this will be incredibly awesome and horrible at the same time.  My biggest hope is this will allow for DRM to be removed from the browser itself and used via WebAssembly where necessary.

However, I also feel sad, because I can see a rise of *language to wasm compilers and the resulting limitations of discovery.  One of the greatest things about the web has been the ability to deconstruct what JS is doing... even minified is still more understandable that wasm will be fore most.
tracker1 3447 days ago. link 2 points
I started playing around with yarn yesterday, it's definitely a bit faster for repeat installs, and the shortlist for outdated is nice too.  Not 100% sold as to if I'll stick with it though.
tracker1 3448 days ago. link 1 point
I find that looking similar to the HTML that renders in the browser is a pretty big feature, that shouldn't be underestimated.
tracker1 3448 days ago. link 2 points
No, I'm not opposed to the Class-oriented interface though... I think it makes writing stateful components easier.  I'm pretty pragmatic about it, I'd rather have clean code that makes sense than subscribe to dogma. That said, I do tend to favor the functional render component most of the time.
tracker1 3450 days ago. link 1 point
I could see this for lighter more trivial bits that one might otherwise reach for jQuery for...
tracker1 3450 days ago. link 1 point
I mean direct render method components... you don't have to inherit from Component or use the legacy method at all if you don't want to.

    export default MyComponent(props, context) {
      return <div>Hello {props.name}!</div>
    }
tracker1 3452 days ago. link 1 point
I happen to like React because it's functional representation all the way down, and I tend to like JSX in my JS vs. weird DSL in templating system in my HTML referenced with JS.  But that's just me.

I can see the appeal of Vue.. and frankly, can see the appeal of Polymer as well.  However, I find React feels better when I've used it.
[more]