Data - DOM binding using ES6 Proxiesgist.github.com 10 pointspotch12 years ago2 commentsSaveHideCopy link On HNComments−zaius12yNice example. I think proxies are really going to clean up a lot of the Javascript binding libs out there.Any idea what's been holding back the adoption of proxies? It's still only implemented in firefox: http://kangax.github.io/es5-compat-table/es6/#Proxies−snird12yFor this specific problem Object.observe will offer a better solution, but for now Object.observe is only supported in Chrome while proxies are only supported in Firefox. Not that it matters in any way, as IE is far far behind..
Comments
Nice example. I think proxies are really going to clean up a lot of the Javascript binding libs out there.
Any idea what's been holding back the adoption of proxies? It's still only implemented in firefox: http://kangax.github.io/es5-compat-table/es6/#Proxies
For this specific problem Object.observe will offer a better solution, but for now Object.observe is only supported in Chrome while proxies are only supported in Firefox. Not that it matters in any way, as IE is far far behind..