I have been building a prototype page over the past few months that uses a lot of SVG and has a lot of elements in general. There is also a ton of data being processed both in JavaScript and server-side (lots of AJAX). There are thousands of event listeners on the page. It's pretty heavy, is the point.
One of the biggest hurdles to doing something like this in JS is the single-threadedness, which locks the page when I have to perform, say, 10 seconds of calculations. There are some strategies for remedying that, but until Web Workers are supported by IE there isn't much of an elegant solution. Also, the page can use upwards of 500MB of memory, which Chrome seems to struggle with at times.
What I'm wondering about is the feasibility of building something like this in JavaScript. My code is far from optimized, but let's just assume that the load this page handles now is what it requires - or let's say it requires more.
Let's also assume the user will be required to have at least a mid-range desktop to use the application.
Are people pushing JavaScript this hard? What are the limits to what it can be expected to handle, in terms of memory and CPU performance? How much should be done client-side versus server-side?
EDIT: I guess it was inevitable that everyone would misinterpret the question. I'm not asking for advice on how to optimize JS code. I'm asking how much processing and data is it reasonable to handle on the client. YES this is dependent on hardware, which I tried to answer by saying mid-range desktops with newest browsers, but really that's not the point. I want to know conceptually how powerful is JavaScript for doing heavy processing. Is it viable at all to do heavy processing in JavaScript?
I hope everyone gets it now. It's a ratio of server-side versus client-side. If I have to run a loop with 1000000 iterations, and ASSUMING there is no cost in the choice between doing X iterations in JS and Y iterations on the server, how much is reasonable to expect JavaScript to handle?