3

Fucking jQuery in Polymer 0.5.

When polymer 0.5 was released, things seemed incredibly easy at first, but when you need to do some complex things, the abstraction layer provided by web components are not of much help. Babel wasn't there too, so I ended up using scope hacks to access event listeners (var self = this). Worse, I have to use jQuery because many of things are downright tedious or fucked up back then, including myself.

Now, React is here; No jQuery, no hacks, no web component polyfills, no unsolvable perf bugs, no scope hacks, no 10sec loading time, no regrets.

Comments
  • 1
    Polymer 1.x might be worth checking out! It's a lot faster now, in part because it uses a slimmer polyfill that just emulates basic functionality. And browser support is catching up.

    Still haven't had time to check out React but it's on my to-do list.
Add Comment