Live data from Hacker News

Ask HN: What's the best library for making cross-platform UIs?

news.ycombinator.com

1–10 of 230 posts

Re: Ask HN: What's the best library for making cross-platform UIs?

#7
React (Native). You can build an iOS and android app with the same codebase. Even windows phone and ubuntu are starting to support it. Then when you want to use the web, your whole data layer can carry over to reactjs. It's a really nice way of doing things. There's even react native for Mac OS that someone has started.

Re: Ask HN: What's the best library for making cross-platform UIs?

#10
post #4

Not a library per se, but HTML+CSS+JS. Bootstrap or some other mobile responsive framework. Works on just about every device&OS. Phone gap or similar if you really need native.

+1, because I had the urge to say the same thing.

I think the question needs to be a lot more specific about the type of app and the platforms it needs to run on. Web-based applications give you the broadest reach for the lowest cost if you can assume internet connectivity and if the GUI that's possible from within the browser sandbox is sufficient for your needs. (Capabilities are growing all the time, but it's still not the same as native.) If your app needs to be offline, it's still possible with web tech but it's harder to justify, unless you're doing a hybrid of online and offline and the online part isn't just service calls.

Post reply on HN