Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

List of JavaScript engines

From Wikipedia, the free encyclopedia
(Redirected fromJavaScript engine)

The firstengines forJavaScript were mereinterpreters of thesource code, but all relevant modern engines usejust-in-time compilation for improved performance.[1] JavaScript engines are typically developed byweb browser vendors, and every major browser has one. In a browser, the JavaScript engine runs in concert with therendering engine via theDocument Object Model andWeb IDL bindings.[2] However, the use of JavaScript engines is not limited to browsers; for example, theV8 engine is a core component of theNode.jsruntime system.[3] They are also calledECMAScript engines, after the official name of the specification. With the advent ofWebAssembly, some engines can also execute this code in the samesandbox as regular JavaScript code.[4][3]

History

[edit]

The first JavaScript engine was created byBrendan Eich in 1995 for theNetscape Navigatorweb browser.[5] It was a rudimentaryinterpreter for the nascent language Eich invented.[6] (This evolved into theSpiderMonkey engine, still used by theFirefox browser.[5])

Google debuted itsChrome browser in 2008, introducing theV8 JavaScript engine that was at the time much faster than its competition.[7][8]This sparked a race between browser vendors to deliver ever-faster JavaScript engines.[9]The key innovations around this era were switching from basictree-walking interpreters tostack- andregister-basedbytecodeVM interpreters,just-in-time compilation (JIT),inline caching (hidden classes) andgenerational GC.Apple released the JIT-enabledNitro engine in June 2008 for itsSafari browser, which had 30% better performance than its predecessor.[10][11]Mozilla followed suit in August 2008 with TraceMonkey, the first JIT compiler for SpiderMonkey engine, released in Firefox 3.1.[12]Opera joined the performance race with their register-bytecode based and JIT-enabledCarakan engine, announced in February 2009[13] and released in April 2010.[14] Microsoft's first JIT-enabledChakra engine, in development since 2008,[15] debuted as part ofInternet Explorer 9 in 2011. Its major rewrite appeared inMicrosoft Edge Legacy in 2015 and open-sourced asChakraCore in 2016.

Further performance gains in major JavaScript engines were later achieved with the introduction of multi-tiered JIT architectures. Progressively advanced JIT compilers are used to optimize hotspots in user code, with each next tier delivering ever more performant native code at the cost of slower compile time. Chrome was the first to implement it in V8 in 2010 with the introduction of Crankshaft, a 2-tiered JIT compiler.[16] By 2023, architecture of V8 evolved into 4 tiers: Ignition – register-based bytecode interpreter, Sparkplug – a fast non-optimizing JIT compiler, Maglev and TurboFan – slower optimizing JIT compilers.[17] JavaScriptCore today has a similar 4-tier architecture,[18] while Firefox's SpiderMonkey and ChakraCore have 3 tiers (interpreter and 2-tiered JIT).[19][20] This ever-increasing complexity of JIT compilers, however, has been criticized as a rich source of browser bugs, prompting some browser vendors to disable JIT altogether, such asMicrosoft Edge's "Super Duper Secure Mode", introduced in 2021 and reportedly with minor performance impact for daily browsing.[21]

V8's influence expanded beyond browsers with the release ofNode.js in 2009 and its package managernpm in 2010. As their popularity exploded, V8 also became the engine powering vast amounts of server-side JavaScript code.[22][23] In 2013,Electron framework appeared that let developers create desktop apps with web technologies as well, usingChromium with V8 andNode.js under the hood.[24]

Taking advantage of performance improvements in JavaScript engines,Emscripten C/C++-to-JavaScript compiler appeared in 2010-2011 and allowed running existing complex C/C++ code, such asgame engines and even wholevirtual machines, directly in the browser.asm.js, a highly optimizable low-level subset of JavaScript for such compilers emerged in 2013, withFirefox being the first to implement specific optimizations for it with OdinMonkey module.[25] Eventually asm.js andNaCl (a competing Google's technology) evolved intoWebAssembly standard in 2017, with all major engines adding support for it.[4]

The six-year gap betweenECMAScript 5 (2009) andES6 (2015) marked a major inflection point for JavaScript engine development. Whereas ES5 was a relatively compact language with straightforward basic implementation, ES6 introduced foundations of modern JavaScript, with substantially increased complexity, as well as an annual release cycle for new specification versions. This put the focus not only on performance optimization, but also on keeping pace with the rapidly evolving standards (of both ECMAScript and wider web ecosystem) and led to a consolidation around engines that had the resources to do it. Many smaller projects did not end up fully implementing ES6 spec, andOpera andMicrosoft both ceased developing their engines and adopted V8 in 2013 and 2021.[26][27] Nashorn engine was dropped from OpenJDK over a similar concern about ECMAScript's rapid development.[28]

List

[edit]
EngineLicenseStandardJITWasmWritten inDescription
V8BSD-3-ClauseESnextYesYesC++JavaScript engine ofGoogle Chrome andChromium/Blink-based browsers, such asMicrosoft Edge. Also used inNode.js andDenoruntimes,Electron framework and numerous other projects. Currently has aregister-basedbytecode interpreter (Ignition) and three tiers of JIT compilers (Sparkplug, Maglev and Turbofan).
SpiderMonkeyMPL-2.0ESnextYesYesC++JavaScript engine ofFirefox and other MozillaGecko applications. The engine currently includes interpreter, 2-tier JIT for JavaScript (Baseline Compiler and WarpMonkey), and a separate 2-tier JIT for WebAssembly.[19] Previously, the engine included components such as the TraceMonkey compiler (first JavaScript JIT), JägerMonkey, IonMonkey, as well as OdinMonkey optimization module notable for pioneeringasm.js.[25]
JavaScriptCoreLGPL-2.0, parts underBSDESnextYesYesC++JavaScript engine ofSafari andWebKit-based browsers. Also used inBun runtime. Started out in 2001 as a fork ofKJS engine. In 2008 the engine was rewritten to use adirect-threaded register-based bytecode interpreter, codenamed SquirrelFish. Shortly after, SquirrelFish Extreme (Nitro in Apple's marketing terms)[29] was released, achieving over 2x speedup over it by using polymorphicinline caching andcontext threading[30] – a basic form ofJIT.[31] These components later became LLint bytecode interpreter and Baseline JIT.[32] In 2011, the first optimizing compiler was added – DFG ("Data Flow Graph") JIT.[32][33] In 2014, an advancedLLVM-based compiler was added, dubbed Fourth Tier LLVM (FTL) JIT.[34] In 2016, FTL was rewritten to use a newly built B3 backend instead of LLVM.[35][18]
ChakraCoreMITES2019YesYesC++JavaScript engine ofMicrosoft Edge Legacy.[36] Open-sourced under the name ChakraCore in 2016. Microsoft discontinued maintenance in 2021, leaving it to the community, but it has received little attention since then. It features a register-based bytecode interpreter and a two-tier JIT compiler.[20]
LibJSBSD-2-ClauseESnextNoYesC++JavaScript engine of theSerenityOS andLadybird browser.[37] Initially a basic AST tree-walking interpreter, later upgraded to a register-based bytecode VM interpreter.[38][39][40][41] Supports WebAssembly via LibWasm library.
RhinoMPL-2.0ES2023 (partial)via JVMNoJavaJavaScript engine fromMozilla for theJava platform. Development started at Netscape in 1997. Originally it compiled JavaScript to JVM bytecode, but the implementation was inefficient and it was mainly used in interpreter mode.[42] Bundled inJDK 6 (2006) as javax.script. In JDK 8 (2014) it was replaced by the faster Nashorn engine.[43] Despite this, the project continues development and implemented support for many parts of newer standards.[44] Used in RingoJS runtime.
NashornGPL-2.0ES6 (partial)via JVMNoJavaJavaScript engine fromOracle used inJDK 8–14.[45] Generates more efficientJVM bytecode than Rhino, taking advantage of the newinvokedynamic instruction introduced in JDK 7.[46] Deprecated in JDK 11 (2018) due to maintenance challenges owing to fast evolution of ECMAScript standard,[28] and removed in JDK 15 (2020).[47] Development continues till today as a standalone library.[48]
GraalJSGFTC, UPL-1.0ESnextviaGraalVMYesJavaJavaScript engine ofGraalVM forJVM platform. Implemented with Truffle, a novel language framework for automatically deriving high-performance code from interpreters, based on the idea ofpartial evaluation of interpreters (Futamura projection).[49][50] Generally much faster than both Rhino and Nashorn, with performance comparable to major browser engines.[51] Supports WebAssembly via GraalWasm module.
HermesMITES6+ (partial)NoNoC++Developed byFacebook forReact Native mobile apps,[52] but can also be used independent from React Native. Precompiles JavaScript to optimized bytecodeahead-of-time to improve app start-up time.[53][54][41]
DuktapeMITES6 (partial)NoNoCA small footprint, easily embeddable ES5 engine with some features from ES6 and later.[55][56][57][58] Used byNetSurf browser.
XSLGPL-3.0+,Apache-2.0ESnextNoNoCJavaScript engine for microcontrollers with limited resources, compliant with latest ECMAScript versions.[59][60][58][41][61] Originally developed byKinoma and first open-sourced in 2015 as a key component of their KinomaJS IoT framework. Now maintained by Moddable as part of the Moddable SDK.[62]
MuJSISCES5NoNoCA lightweight ECMAScript interpreter library, designed for embedding in other software to extend them with scripting capabilities. Originally developed forMuPDF.[63][56]
QuickJSMITES2023NoNoCA lightweight ECMAScript engine byFabrice Bellard and Charlie Gordon, currently featuring almost complete support of ES2023.[64][56][53][65][41] Implements a stack-based bytecode VM interpreter and a single-pass AST-free direct-to-bytecode compiler. Can precompile .js to bytecodeahead-of-time and produce a binary executable with no external dependencies. Used in WinterJS andAmazon's LLRT runtimes,CouchDB,nginx (as alternative to njs),yt-dlp.
V4 (QJSEngine)LGPL,GPL,QtES2016YesNoC++JavaScript engine ofQt'sQML framework, powering UI of modern Qt applications,Qt Quick,KDE Plasma.[66][67][68][69] Initially appeared in Qt 5.0 (2012) as a wrapper for V8,[70] later replaced by Qt's lightweight home-grown "V4" engine in Qt 5.2 (2013)[71][72] ES7/ES2016-compliant[73] and JIT-enabled, using macroassembler code borrowed from JavaScriptCore.[74][75] Only used for QML, not for the embedded browser engine modules: QtWebKit module used JavaScriptCore, later succeeded byBlink/V8-based QtWebEngine.
EspruinoMPL-2.0ES5 (subset)NoNoCA very small footprint interpreter specifically formicrocontrollers.[57] Can run in less than 8 kB of RAM by executing from source (rather thanbytecode).
JerryScriptApache-2.0ES2022NoNoCUltra-lightweight JavaScript engine bySamsung for microcontrollers with less than 64 KB RAM.[56][58] Supports ES5 and large parts of recent standards up to ES2022.
EscargotLGPL-2.1ESnextNoYesC++A newer lightweight JavaScript engine bySamsung for resource-constrained environments, targeting mid-range devices like phones and TVs. Under active development, fully supports latest ECMAScript standard except a few minor features, as well as WebAssembly.[76][56][77] Implements a register-based VM interpreter.
ottoMITES5NoNoGoJavaScript engine in pure Go, implementing ES5 but with non-compliant regex engine from Go.
GojaMITES2023 (partial)NoNoGoJavaScript engine in pure Go, inspired by otto, fully implementing ES5 and parts of newer standards. Used byEthereum's official Go implementation (Geth).[78]
BoaMIT,UnlicenseESnextNoNoRustA JavaScript engine written inRust.[79][80]
KieselMITESnextNoNoZigJavaScript engine by Linus Groh written inZig.[81][82][83][84]
engine262MITESnextNoNoTypeScriptA JavaScript engine written in TypeScript for development and exploration, intended essentially as a reference implementation of the language.[41]

Historical engines

[edit]

These engines have been discontinued and are mostly interesting for the historical perspective. Some may still be in use today for legacy purposes (especially Microsoft's old engines that continue to ship withWindows).

EngineLicenseStandardJITWritten inDescription
MochaProprietaryJS1.1 (≈ES1)NoC++The first JavaScript engine. Prototyped byBrendan Eich in a 10-day sprint in May 1995 and shipped in September 1995 inNetscape Navigator 2.0b1.[85] Due to feature freeze in August 1995, it was incomplete relative to the envisioned language design. Version 1.1 was released with Navigator 3.0 in 1996, completing the initial development of the language and served as the basis for the first edition ofECMAScript standard in 1997. The engine had arecursive descent parser that directly emittedbytecode, a stack-based virtual machine, usedreference counting instead ofGC and represented primitives as discriminated unions rather than tagged pointers. Source code as part of Navigator 3.0.2 is available fromInternet Archive.[86] For Navigator 4.0, the engine was completely rewritten and renamed SpiderMonkey.[87]
KJSLGPL-2.0+ES5NoC++The engine originally used inKonqueror, and one component ofKHTML. Predecessor to JavaScriptCore, which forked it in 2001 and significantly diverged since. Originally an AST-tree-walking interpreter, upgraded to a bytecode interpreter (FrostByte) in 2008.[88] Development largely stopped as Konqueror transitioned from KHTML first to QtWebKit (JavaScriptCore) and then QtWebEngine (V8).KDE Plasma 6 finally removed KJS/KHTML engine altogether.[89]
JScriptProprietaryES3NoC++[90]JavaScript engine ofInternet Explorer 3.0 - 8.0. One component of theMSHTML (Trident)browser engine.
JScript .NETProprietaryES4via CLRJavaScript engine for.NET Framework 1.0 - 4.x developed byMicrosoft, used inASP.NET, based onCommon Language Runtime andCOM Interop. Originally introduced as JScript .NET in 2000,[91] with later versions called JScript 7.0, JScript 8.0[92] and, finally, JScript 10.0 in .NET Framework 4.0.[93] However, it is unrelated to both JScript (aka JScript 1.0 - 5.8) and JScript9 engines.[92] It supports ES3, many of the features proposed for ES4,[87] as well as many unique .NET-related dialectisms.[94][95] Dropped from.NET Core and the modern.NET platform.
Chakra (JScript9)ProprietaryES5YesC++JavaScript engine ofInternet Explorer 9.0 - 11.0. It was first previewed in 2010 atMIX 10.[96] Still ships in Windows 11 as JScript9Legacy.dll, a drop-in compatible replacement for the original JScript engine (jscript.dll).[97][98]
Linear A,
Linear B,
Futhark
ProprietaryES3NoC++A series of early JavaScript engines ofOpera browser. Unnamed engine in Opera 3 (1997–2000). Linear A in Opera 4–6 (2000–2002). Linear B in Opera 7–9.27 (2002–2007) – implemented complete ECMAScript support. Futhark in Opera 9.50-10.20 (2007–2010).[99]
CarakanProprietaryES5YesC++JavaScript engine ofOpera10.50 - 12.x (2010–2013).[13][100] It featured register-based bytecode and JIT.[13] The next major release, Opera 15, switched from Presto toWebKit/Blink browser engine along with itsV8 JavaScript engine.[26]
QtScriptLGPL,GPL,QtES5NoC++Originally developed by Trolltech, now owned byThe Qt Company. First appeared inQt 4.3, deprecated in Qt 5.5 in favor ofQML's V4 and then dropped in Qt 6.5. Based on JavaScriptCore engine and featured a few Qt-specific ECMAScript extensions, such as QObject-style signal and slot connections.
EpimetheusMPL-1.1GPL-2.0+LGPL-2.1+ES4NoC++Netscape's experimental "JavaScript 2.0" implementation towardsES4 proposal.[87][101]
TamarinMPL-2.0ES4YesC++ActionScript and ECMAScript engine used inAdobe Flash Player 9. ImplementedES4 proposal.
NarcissusMPL-1.1+GPL-2.0+LGPL-2.1+ES5NoJavaScriptJavaScript engine implemented in JavaScript (ameta-circular evaluator) byBrendan Eich, the creator of JavaScript. Used for experimentation with new language features for ES6 efforts.[87]
LinksGPL-2.0+NoNoCLinks browser had a basic JavaScript implementation until version 2.1pre28. Removed in 2.1pre29 for being "very buggy".[102]
VoyagerGPL-3.0ES3NoCVoyager, another web browser forAmiga in the late 1990s – early 2000s, had its own JavaScript engine.
ScriptEaseProprietaryES3[103]NoC++An old proprietary engine last updated in 2003. Only notable for its use in theJames Webb Space Telescope.[104]

See also

[edit]

References

[edit]
  1. ^Looper, Jen (21 September 2015)."A Guide to JavaScript Engines for Idiots".Telerik Developer Network. Archived fromthe original on 8 December 2018. Retrieved8 December 2018.
  2. ^"How Blink Works". Retrieved12 March 2024.
  3. ^ab"Documentation · V8". Google. Retrieved3 March 2024.
  4. ^abNelaturu, Keerthi (September 2020)."WebAssembly: What's the big deal?".medium.com. Retrieved3 March 2024.
  5. ^abEich, Brendan (21 June 2011)."New JavaScript Engine Module Owner".
  6. ^Fin JS (17 June 2016),"Brendan Eich – CEO of Brave",YouTube, retrieved7 February 2018
  7. ^"Big browser comparison test: Internet Explorer vs. Firefox, Opera, Safari and Chrome".PC Games Hardware. Computec Media AG. 3 July 2009.Archived from the original on 2 May 2012. Retrieved28 June 2010.
  8. ^Purdy, Kevin (11 June 2009)."Lifehacker Speed Tests: Safari 4, Chrome 2".Lifehacker.Archived from the original on 14 April 2021. Retrieved8 May 2021.
  9. ^"Mozilla asks, 'Are we fast yet?'".Wired.Archived from the original on 22 June 2018. Retrieved18 January 2019.
  10. ^Safari 5 Released
  11. ^Shankland, Stephen (2 March 2010)."Opera 10.5 brings new JavaScript engine".CNET. CBS Interactive. Archived fromthe original on 3 October 2013. Retrieved30 January 2012.
  12. ^"TraceMonkey: JavaScript Lightspeed, Brendan Eich's Blog".Archived from the original on 4 December 2015. Retrieved22 July 2020.
  13. ^abc"Carakan". Archived fromthe original on 31 May 2009. Retrieved9 July 2009.
  14. ^https://archive.nytimes.com/www.nytimes.com/external/readwriteweb/2010/03/02/02readwriteweb-opera-1050-a-browser-worth-switching-to-88992.html
  15. ^"Microsoft Edge's JavaScript engine to go open-source". 7 December 2015.
  16. ^"A New Crankshaft for V8".Chromium Blog. 7 December 2010. Retrieved22 April 2011.
  17. ^"Maglev - V8's Fastest Optimizing JIT · V8".
  18. ^ab"Speculation in JavaScriptCore". 29 July 2020.
  19. ^ab"SpiderMonkey — Firefox Source Docs documentation".
  20. ^ab"Architecture Overview".GitHub.
  21. ^"Super Duper Secure Mode". 4 August 2021.
  22. ^"Deno 2 Arrives with Long-Term Support, Node.js Compatibility".The New Stack. 19 June 2024. Retrieved25 August 2025.
  23. ^Camden, Raymond K. (2015).Apache Cordova in Action. Manning. pp. 2–15.ISBN 9781617292392.
  24. ^"Electron Internals: Using Node as a Library".electronjs.org. 8 August 2016.Archived from the original on 9 November 2017. Retrieved3 July 2020.
  25. ^ab"Mozilla's Asm.js Gets Another Step Closer to Native Performance". 21 December 2013.
  26. ^ab"Dev.Opera — 300 Million Users and Move to WebKit". Archived fromthe original on 28 June 2014.
  27. ^New Microsoft Edge to replace Microsoft Edge Legacy with April's Windows 10 Update Tuesday release, Microsoft, 12 February 2021,archived from the original on 11 March 2021, retrieved12 March 2021
  28. ^ab"JEP 335: Deprecate the Nashorn JavaScript Engine for Removal".
  29. ^"JavaScriptCore – WebKit".
  30. ^https://web.archive.org/web/20250514082037/https://webdocs.cs.ualberta.ca/~amaral/cascon/CDP05/slides/CDP05-berndl.pdf[bare URL PDF]
  31. ^"Introducing SquirrelFish Extreme". 18 September 2008.
  32. ^ab"Speculation in JavaScriptCore". 29 July 2020.
  33. ^"Changeset 94559 – WebKit".
  34. ^"Introducing the WebKit FTL JIT". 13 May 2014.
  35. ^"Introducing the B3 JIT Compiler". 15 February 2016.
  36. ^"Targeting Edge vs. Legacy Engines in JsRT APIs". Retrieved10 September 2015.
  37. ^"LibJS JavaScript engine".libjs.dev. Retrieved30 June 2023.
  38. ^"LibJS: Start fleshing out a bytecode for the JavaScript engine :^) · LadybirdBrowser/Ladybird@69dddd4".GitHub.
  39. ^"LibJS: Rip out the AST interpreter :^) · LadybirdBrowser/ladybird@2eaa528".GitHub. Retrieved10 July 2024.
  40. ^"Meet Ladybird browser, a promising cross-platform web browser - gHacks Tech News". 20 June 2023.
  41. ^abcde"JavaScript technologies overview - JavaScript | MDN". 8 July 2025.
  42. ^"Rhino History".Mozilla Foundation. Archived fromthe original on 22 October 2020. Retrieved20 March 2008.
  43. ^"JEP 174: Nashorn JavaScript Engine".
  44. ^https://github.com/mozilla/rhino/milestones
  45. ^"Oracle Nashorn: A Next-Generation JavaScript Engine for the JVM".
  46. ^Lagergren, Marcus."Nashorn War Stories (from a battle scarred veteran of invokedynamic)"(PDF).Oracle Corporation.
  47. ^"JEP 372: Remove the Nashorn JavaScript Engine".
  48. ^"Using Nashorn with different Java versions".GitHub. Retrieved23 January 2025.
  49. ^"Truffle: A Self-Optimizing Runtime System"(PDF).Oracle Corporation. Retrieved23 August 2013.
  50. ^Wimmer, Christian; Würthinger, Thomas (2012)."Truffle: A self-optimizing runtime system".Proceedings of the 3rd annual conference on Systems, programming, and applications: Software for humanity. pp. 13–14.doi:10.1145/2384716.2384723.ISBN 978-1-4503-1563-0.
  51. ^Seaton, Chris (20 September 2016)."Faster Ruby and JavaScript with GraalVM"(PDF).chrisseaton.com.
  52. ^"Using Hermes". Facebook. Retrieved9 April 2021.
  53. ^abWen, Elliott; Zhou, Jiaxiang; Luo, Xiapu; Russello, Giovanni; Dietrich, Jens (2024)."Keep Me Updated: An Empirical Study on Embedded JavaScript Engines in Android Apps".MSR '24: Proceedings of the 21st International Conference on Mining Software Repositories. Lisbon, Portugal: ACM. pp. 361–372.doi:10.1145/3643991.3644901.
  54. ^Xie, Juanying; Kaiser, M. Shamim; Rathore, Vijay Singh (2023).Information and Communication Technology for Competitive Strategies (ICTCS 2022): Intelligent Strategies for ICT. Springer Nature Singapore. p. 562.ISBN 9789811993046.
  55. ^"Duktape". Retrieved21 September 2013.
  56. ^abcdeMeng Wu; Weixin Dong; Qiang Zhao; Zhizhong Pan; Baojian Hua (2023). "An Empirical Study of Lightweight JavaScript Engines".IEEE:413–422.doi:10.1109/QRS-C60940.2023.00103.ISBN 979-8-3503-5939-8.
  57. ^abMinsu Kim; Hyuk-Jin Jeong; Soo-Mook Moon (2016).Small Footprint JavaScript Engine. Springer. pp. 103–116.doi:10.1007/978-3-319-42304-3_6.
  58. ^abcKai Grunert (2020)."Overview of JavaScript Engines for Resource-Constrained Microcontrollers".IEEE:1–7.doi:10.23919/SpliTech49282.2020.9243749.ISBN 978-953-290-105-4.
  59. ^"moddable/documentation/xs/XS Conformance.md at public".GitHub.
  60. ^"Apps for IoT". Archived fromthe original on 28 December 2018.
  61. ^Hoddie, Peter; Prader, Lizzie (2020).IoT Development for ESP32 and ESP8266 with #"/wiki/ISBN_(identifier)" title="ISBN (identifier)">ISBN 9781484250709.
  62. ^"Xs7 @ Tc-39".
  63. ^"MuJS". Retrieved22 September 2014.
  64. ^"QuickJS Javascript Engine".
  65. ^Tadashi Saito; Hideya Iwasaki (2025). "Integrating Static Optimization and Dynamic Nature in JavaScript".GPCE '25: Proceedings of the 24th ACM SIGPLAN International Conference on Generative Programming: Concepts and Experiences. ACM. pp. 41–53.doi:10.1145/3742876.3742877.
  66. ^"V4 - Qt Wiki".
  67. ^Tandel, Mrunali; Joshi, Uday; Golhani, Amit (2016)."Literature Review: Scripting in Qt for Scripting Engine Development"(PDF).International Journal of Computer Science and Information Technologies.7 (3):1347–1350. Retrieved20 September 2025.
  68. ^Strakhov, Pavel Vladimirovich (2018).Game Programming using Qt 5 Beginner's Guide: Create amazing games with Qt 5, C++, and Qt Quick (2nd ed.). Packt Publishing Ltd.ISBN 9781788390651. Retrieved21 September 2025.
  69. ^https://develop.kde.org/docs/plasma/scripting/
  70. ^"Qt-5-Beta - Qt Wiki".
  71. ^"New Features in Qt 5.2 - Qt Wiki".
  72. ^Pannu, Mandeep; Kay, Iain; Gill, Bod (17–19 October 2019). "Inherited Vulnerabilities: JavaScript Engine V4 Secure Coding Compared to Google's V8".2019 IEEE 10th Annual Information Technology, Electronics and Mobile Communication Conference (IEMCON). Vancouver, BC, Canada: IEEE.doi:10.1109/IEMCON.2019.8936228.
  73. ^"JavaScript Host Environment | Qt QML | Qt 6.10.0".
  74. ^"V4 - Qt Wiki".wiki.qt.io. Retrieved24 April 2021.
  75. ^"Qt-contributors-summit-2013-QML-engine - Qt Wiki".
  76. ^"Releases · Samsung/Escargot".GitHub.
  77. ^Hyukwoo Park; Seonghyun Kim (2024)."Tail Call Optimization Tailored for Native Stack Utilization in JavaScript Runtimes".IEEE Access.12:111801–111817.Bibcode:2024IEEEA..12k1801P.doi:10.1109/ACCESS.2024.3441750.
  78. ^"JavaScript Console".
  79. ^"Let's build a JavaScript Engine".2019.jsconf.eu. Retrieved23 March 2022.
  80. ^"GitHub - boa-dev/boa: Boa is an embeddable and experimental Javascript engine written in Rust".github.com. Retrieved8 April 2022.
  81. ^"Kiesel JavaScript Engine".kiesel.dev. Retrieved30 September 2025.
  82. ^kiesel-js."kiesel".Codeberg.org. Retrieved30 September 2025.
  83. ^"Test262: ECMAScript Test Suite". Retrieved30 September 2025.
  84. ^"Temporal_rs is here! The datetime library powering Temporal in Boa, Kiesel, and V8". 24 September 2025. Retrieved30 September 2025.
  85. ^"Netscape Navigator 2.0b1 for Windows". Archived fromthe original on 14 June 1997.
  86. ^"Netscape Communicator 3.0.2 Source Tree".Archive.org. 28 October 2011. Retrieved23 September 2025.
  87. ^abcdWirfs-Brock, Allen; Eich, Brendan (2020)."#".Proceedings of the ACM on Programming Languages.4 (HOPL):1–189.doi:10.1145/3386327.
  88. ^https://blogs.kde.org/2008/05/22/news-land-konquerors/
  89. ^Brockmeier, Joe (28 February 2024)."The KDE desktop gets an overhaul with Plasma 6".
  90. ^Ratanaworabhan, Paruj; Livshits, Benjamin; Zorn, Benjamin G."JSMeter: Comparing the Behavior of JavaScript Benchmarks with Real Web Applications"(PDF).USENIX.
  91. ^http://msdn.microsoft.com/ms974588.aspx
  92. ^abhttps://learn.microsoft.com/en-us/previous-versions/visualstudio/visual-studio-2010/2z6exc9e(v=vs.100)
  93. ^http://msdn.microsoft.com/en-us/library/x85xxsf4.aspx
  94. ^https://learn.microsoft.com/en-us/previous-versions/visualstudio/visual-studio-2010/894hfyb4(v=vs.100)
  95. ^https://learn.microsoft.com/en-us/previous-versions/visualstudio/visual-studio-2010/t895bwkh(v=vs.100)
  96. ^Frequently Asked Questions,Microsoft, 13 March 2010, archived fromthe original on 22 March 2010, retrieved18 March 2010
  97. ^https://techcommunity.microsoft.com/blog/windows-itpro-blog/jscript9legacy-scripting-engine-now-enabled-by-default/4431326
  98. ^"Windows 11 22H2 has a different way of using the JS engine? - Microsoft Q&A".
  99. ^"Opera's archived version history 1-12".
  100. ^"Opera Desktop Team's Blog | Opera". Archived fromthe original on 3 March 2006.
  101. ^"Epimetheus".
  102. ^http://links.twibright.com/download/ChangeLog
  103. ^"JavaScript Engines and Products".
  104. ^Clark, Mitchell (18 August 2022)."The James Webb Space Telescope runs JavaScript, apparently".The Verge. Retrieved2 September 2022.
Dialects
Engines
Frameworks
Client-side
Server-side
Multiple
  • Cappuccino
Libraries
People
Other
Code analysis
Subsets,* supersets
Transpilers
Concepts
Debuggers
Documentation generators
Editors (comparison)
Engines
Frameworks
Relatedtechnologies
Package managers
Module bundlers
Server-side
Unit testing frameworks (list)
People
Retrieved from "https://en.wikipedia.org/w/index.php?title=List_of_JavaScript_engines&oldid=1323272422"
Category:
Hidden categories:

[8]ページ先頭

©2009-2025 Movatter.jp