The viability of JavaScript frameworks on mobile
21–30 of 85 posts
Re: The viability of JavaScript frameworks on mobile
#22The site says 12KB, for some reason, but minimized and gizipped, the latest version is closer to 7 or 8 KB IIRC.
Re: The viability of JavaScript frameworks on mobile
#23Re: The viability of JavaScript frameworks on mobile
#24This is good. Many frameworks are just too freaking huge for mobile but even when you use tiny frameworks and you dump a bunch of images into them you're going to have similar issues (at least on load). Honestly using the DOM API isn't all that hard. Yes it awkward, verbose and sometimes cumbersome but it's still pretty straight forward. I'm actually really liking react lately but if I want something done well for a…
Re: The viability of JavaScript frameworks on mobile
#25Re: The viability of JavaScript frameworks on mobile
#26This is where small frameworks like Mithril shine. The site says 12KB, for some reason, but minimized and gizipped, the latest version is closer to 7 or 8 KB IIRC. http://mithril.js.org/
Re: The viability of JavaScript frameworks on mobile
#27Re: The viability of JavaScript frameworks on mobile
#28Even the Facebook mobile web part that has been developed in React, the people search, feels rather slow on all my mobile devices (incl high end iOS amd Android devices).
The truth is, the mobile web space is not a good as developers expected it to be in 2015 unless users visit websites with expensive devices, which most of them do not. Making a website responsive , while being an improvement, doesn't make it automatically mobile friendly.
Re: The viability of JavaScript frameworks on mobile
#29This is good. Many frameworks are just too freaking huge for mobile but even when you use tiny frameworks and you dump a bunch of images into them you're going to have similar issues (at least on load). Honestly using the DOM API isn't all that hard. Yes it awkward, verbose and sometimes cumbersome but it's still pretty straight forward. I'm actually really liking react lately but if I want something done well for a…
This is heartening. How do you deal with cross-browser differences, especially considering you're supporting older mobile devices?
http://caniuse.com/#search=event
http://caniuse.com/#search=querySelector
http://caniuse.com/#feat=classlist
http://caniuse.com/#search=animation
http://caniuse.com/#search=transform
http://caniuse.com/#feat=css3-boxsizing
http://caniuse.com/#search=history
http://caniuse.com/#feat=namevalue-storage
http://caniuse.com/#search=es5
http://caniuse.com/#feat=geolocation
http://caniuse.com/#feat=websockets
Even things like the template tag have reasonable support. It's only when you get into bleeding-edge stuff like webcomponents and web animations that browser support starts to drop off, and unless you're using Polymer (which polyfills all that), that's unlikely to matter.
Re: The viability of JavaScript frameworks on mobile
#30Would be interesting to see Meteor stats there too
How about Sencha Touch? I'm guessing it's a beast.