|
|
|
|
|
by yathern
3477 days ago
|
|
I've been using Polymer since 0.5 for a number of personal projects as well as professional. I have to say it's been a pleasure to use - coming from Angular 1.0. I like it has a very low barrier to entry, having only one real concept; Web Components. Polymer gives you Data Binding and a few nice things on top of that, but for the most part, you're writing things fairly vanilla. It's definitely not without it's problems. Element inheritence doesn't really exist in 1.X unless you use Behaviors. There's no inline expression support in bindings. This is partially good because it forces you to keep logic in your javascript, where it belongs. But it also means you sometimes have to be more verbose in obvious places: <span hidden$='[[thingsAreEqual(a,b)]]>They are not equal</span>
vs <span hidden$='[[a==b]]'>They are not equal</span>
But even still, I've been able to be very productive with it, and enjoy using it thoroughly. Feel free to ask me about my experience. |
|