I've seen a lot of stackoverflow questions regarding the other client side scripting languages
The Internet is becoming a very content-rich and dynamic place. HTML and CSS specifications are trying to bring the Web to the next level - we are getting WebSockets support which is real nice for full-duplex client-server communication, enabling some fascinating design patterns to emerge. Also, we have a working implementation of WebGL in JavaScript with which I've had a lot of fun thus far.
But this has brought up some concerns, at least for me. I'm a desktop programmer, C/C++/Objective-C - depending on the platform. Specifically, a rendering architect. JavaScript has served all of us marvelously, has it not? We've used it for getting basic user interactions with 2D linear websites, responding to simple events and combining all that with HTML and CSS.
Given the fact that the doors of realtime communication and GPU-driven visualization have been opened to the web, will this have any implications on JavaScript? I've seen the reactions to Dart and other attempts at pushing JavaScript out. JavaScript is weakly-typed, which sounds all sorts of alarms for me (considering the intense math library which hangs on speed, unnecessary runtime checking is not a fun time).
I've shifted a lot of the code to the GPU, but even then my in-house renderer is simply CPU-bound (the HD6990 can't be the problem, let alone the code which powers the desktop/embedded engine).
So, here is it out in the front:
Code is lying naked because of the interpreter design. Rendering technology and solutions are worth a lot of money. It's the sole foundation of my company and pays the bills. Obfuscation doesn't cut it (Do correct me if I'm wrong). I've always wondered, why isn't there an intermediate compilation process to a form of bytecode which can be processed by the VM?
It is weakly typed. Juggling matrices, vectors, quaternions, arrays and all other sorts of data common to highly-interactive applications just bloats processing with runtime checking. Even though it eventually goes to the GPU side, you still have to do a fair amount of work on the CPU side which is bogged down by JavaScript.
Prototype-based paradigm will dampen efforts to port rendering code from major players who can push adoption of WebGL/WebSockets. (remember that a lot of it is driven by the CPU). Will the prototype-based paradigm persist as more and more users start demanding high fidelity 2D/3D content?
WebSockets have proven to be a beautiful new addition to web gaming (BrowserQuest), not to mention dynamic websites, and will be driven by a lot of people in the future to develop awesome content ( my company is running a little closed project that implements a small MMO in a 3D environment driven by WebSockets ).
So, do my concerns have any basis in reality?
Are there any new movements in regard to these problems?
If you offer any answers to the topic, could you also add a small paragraph of personal opinion? I know it's not the "way of the Stackexchange", but it doesn't harm since all the other questions are legitimate and answers can be based in fact.