Hacker News new | ask | show | jobs
by Limes102 5373 days ago
I'm writing really a very large app for the company I work for. We're using PhoneGap with HTML and JavaScript and have many plugins.

What we are not having problems with is the fact that we only really have a single thread to do everything. All I can say is that I'm glad it wasn't my idea to build it this way.

1 comments

This is a surprisingly often ignored limitation of the browsers. You need threads to achieve decent performance given any significant complexity, and mobile CPUs are going multi-core.
Yep - Buttons are bad enough, but things like sliders are just the worst things imaginable!!

I thought it might be worth looking into web workers, but everything seems to interact with the DOM so that's not much help either.