NodeJS: JavaScript as a Web Server Language

Concurrent, non-blocking, JIT, VM for running JavaScript as a scripting language on a server. The non-blocking event based IO on one thread drastically reduces memory overhead which increases speed allowing massive throughput. A simple "hello world" web server on NodeJS has been nearly 6 times faster than Apache on the same hardware... and that's comparing a script, with compiled code.

Google Coder Web Development uses a Raspberry Pi as the web server, and development environment.

Also: On the Microsoft IIS platform: Javascript in ASP, Jscript in ASP is faster than VBScript

See also: