5 ms·
Me gusta. Can this potentially replace a client-side MVC framework like backbone.js or ember.js entirely or are there limitations?
by benradler 13y ago
Me gusta. Can this potentially replace a client-side MVC framework like backbone.js or ember.js entirely or are there limitations?
- chrismccord 13y agoSync is an alternative to Ember/Backbone, but not a replacement. If you're trying to replicate desktop software in the browser for instance, a heavy client-side framework is the way to go; however, for certain use cases for web applications with lots of "richness" but not trying to replicate desktop level interactivity, think Basecamp, Reddit, Facebook, Twitter, the Sync approach could definitely hold its own against these types of apps. I've greatly enjoyed building Backbone apps, and I look forward to playing with Ember, but not every web application needs to be rendered client-side against a JSON api. Sync also allows you to wire up your own javascript, so you could even use backbone models submitting over JSON and render your realtime views with Sync on the server. I'm excited to see how far we can take this approach.
- benradler 13y agothanks for the info chris, I will be following the project closely. I think I will try and implement it in one of my instagram-API driven web apps as a test.
- chrismccord 13y agoNo problem. Let me know how it goes