List of ECMAScript engines

An ECMAScript engine is a program that executes source code written in a version of the ECMAScript language standard, for example, JavaScript.

These are new generation ECMAScript engines for web browsers, all implementing just-in-time compilation (JIT) or variations of that idea. The performance benefits for just-in-time compilation make it much more suitable for web applications written in JavaScript.

The following engines use runtime interpreters, which do not compile into native machine code and generally run more slowly.

  • Continuum:[7] A self-interpreter that supports recent iterations of the draft ECMAScript 6 specification.[8] Uniquely, the engine is implemented in ECMAScript 3, which makes it possible to run ES6 in browsers as old as IE6.[9]
  • Futhark: The ECMAScript engine of the Opera web browser versions 9.50 to 10.10.
  • InScript: An obsolete proprietary library used for iCab 2 and 3
  • JScript: The engine that is used in Internet Explorer for versions up to IE9, and one component of the Trident layout engine.
  • KJS: The engine used in Konqueror, and one component of KHTML, a predecessor to JavaScriptCore.
  • Linear B: The ECMAScript engine of the Opera web browser versions 7.0 to 9.50, exclusive.
  • Narcissus: JavaScript implemented in JavaScript (a meta-circular evaluator), intended to run in another JavaScript engine, of theoretical and educational nature only.
  • JS-Interpreter A lightweight JavaScript interpreter implemented in JavaScript with step-by-step execution.
  • QtScript: Originally developed by Trolltech, now owned by Digia. It provides QObject integration with JavaScriptCore.
  • Rhino: One of several JavaScript engines from Mozilla, using the Java platform.
  • YAJI: An ECMAScript engine[10] based on the FESI[11] implementation by Jean-Marc Lugrin in 1999, using the Java platform, currently being developed to support the latest standards (Spec 262, v5.1).[12]
  • Duktape: a small footprint, easily embeddable Ecmascript E5/E5.1 engine.[13]
  • The Kinoma Platform, an ECMAScript 5 runtime environment and framework
  • Jsish: a javascript interpreter with builtin sqlite, json, websocket, and zvfs support.[14]
  • Websocket.js: embeddable Javascript engine with HTTP/Websocket support.[15]
  • Espruino: a very small footprint interpreter specifically for Microcontrollers. Can run in less than 8kB of RAM by executing from source (rather than Bytecode)
  • MuJS: a lightweight ECMAScript interpreter library, designed for embedding in other software to extend them with scripting capabilities. Originally developed for MuPDF.[16]

See also

References

  1. ^ http://labs.opera.com/news/2009/02/05/
  2. ^ http://web.archive.org/web/20060303160759/http://my.opera.com/desktopteam/blog/
  3. ^ http://my.opera.com/ODIN/blog/300-million-users-and-move-to-webkit
  4. ^ http://my.opera.com/ODIN/blog/opera-14-for-android-is-out
  5. ^ Frequently Asked Questions, Microsoft, 2010-03-13, retrieved 2010-03-18 
  6. ^ http://www.apple.com/safari/whats-new.html
  7. ^ "An ES6 Virtual Machine Built in JavaScript". Retrieved 2012-12-01. 
  8. ^ "ECMA-262 6th Edition / Draft". Ecma International. November 2012. Retrieved 2012-12-01. 
  9. ^ "Continuum - A JavaScript Virtual Machine Built in JavaScript". Github. Retrieved 2012-12-01. 
  10. ^ "YAJI: Yet Another JavaScript Interpreter". Google Code. Google. Retrieved 2012-01-31. 
  11. ^ "FESI". September 2003. 
  12. ^ "ECMAScript Language Specification ECMA-262 5.1 edition". Ecma International. June 2011. Retrieved 2012-01-31. 
  13. ^ "Duktape". Retrieved 2013-09-21. 
  14. ^ "Jsish". Retrieved 2014-04-30. 
  15. ^ "Websocket.js". Retrieved 2014-07-16. 
  16. ^ "MuJS". Retrieved 2014-09-22.