Show HN: Way.js – Simple, persistent, framework-agnostic two-way databinding
1–10 of 62 posts
Re: Show HN: Way.js – Simple, persistent, framework-agnostic two-way databinding
#2Re: Show HN: Way.js – Simple, persistent, framework-agnostic two-way databinding
#3Github repo: https://github.com/gwendall/way.js
Re: Show HN: Way.js – Simple, persistent, framework-agnostic two-way databinding
#4Re: Show HN: Way.js – Simple, persistent, framework-agnostic two-way databinding
#5OT: After building a couple of large applications in Angular I've come to realize that I seldom need two-way bindings. The school example where you enter something in an input box and it shows up somewhere else in real-time is not really used in the real world. Or is it? Why do we need two-way data binding?
Re: Show HN: Way.js – Simple, persistent, framework-agnostic two-way databinding
#6http://jsperf.com/angular-vs-knockout-vs-ember/351
For me personally I am loving VueJS right now.
Re: Show HN: Way.js – Simple, persistent, framework-agnostic two-way databinding
#7Looks very straight-forward. Good job! OT: After building a couple of large applications in Angular I've come to realize that I seldom need two-way bindings. The school example where you enter something in an input box and it shows up somewhere else in real-time is not really used in the real world. Or is it? Why do we need two-way data binding?
Collaboration applications need it.
Re: Show HN: Way.js – Simple, persistent, framework-agnostic two-way databinding
#8Looks very straight-forward. Good job! OT: After building a couple of large applications in Angular I've come to realize that I seldom need two-way bindings. The school example where you enter something in an input box and it shows up somewhere else in real-time is not really used in the real world. Or is it? Why do we need two-way data binding?
Possibilities are endless and you're more likely to implement them when it is so painless.
Re: Show HN: Way.js – Simple, persistent, framework-agnostic two-way databinding
#9Looks very straight-forward. Good job! OT: After building a couple of large applications in Angular I've come to realize that I seldom need two-way bindings. The school example where you enter something in an input box and it shows up somewhere else in real-time is not really used in the real world. Or is it? Why do we need two-way data binding?
But I do sometimes need databinding from view to model (when I want users to enter data, and it just fills in my object), and I sometimes want databinding from model to view (where my data is nicely displayed).
So rather than doing something fiddly and different for each way, it makes more sense to just have 2-way databinding in the first place.
And that then makes it easier for when I _do_ want 2-way databinding - for instance allowing users to enter a filter to narrow down a list.