Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to detect from nodejs which JavaScript engine it is running on?

There are now several forks of nodejs and some of them support JavaScript engines other than Google's V8 engine.

For my node code to see which JS engine it is running under, what is currently the best way?

The engines I am aware of are:

  • Google's V8 - The only engine supported by the official node.js and the iojs fork. One of the engines supported by JXcore.
  • Mozilla's SpiderMonkey - One of the engines supported by JXcore.
  • Microsoft's ChakraCore - The engine supported by Microsoft's port of node.js and apparently one of the engines supported by JXcore though I haven't got that one to work yet.

(I've asked a separate question about detecting which fork of nodejs is being used. This question is only about detecting the JS engine.)

like image 739
hippietrail Avatar asked Jan 27 '16 12:01

hippietrail


People also ask

On which JavaScript engine does Node.js run?

Node. js® is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Which JavaScript engine does Node.js Chrome use?

What is V8? V8 is Google's open source high-performance JavaScript and WebAssembly engine, written in C++. It is used in Chrome and in Node.js, among others.

Is Node.js JavaScript engine?

To summarize, Node. js is a cross-platform JavaScript runtime environment for servers and applications. It is built on a single-threaded, non-blocking event loop, the Google Chrome V8 JavaScript engine, and a low-level I/O API.

Which engine is used to run this JavaScript code?

The JavaScript Engine is a program whose responsibility is to execute JavaScript code. All modern browsers come with their own version of the JavaScript Engine but the most popular one is Google's V8 Engine. Google's V8 engine powers Google Chrome browsers, as well as, Node.


1 Answers

The process object contains a lot of information about the currently running process (in this case, node).

My process.versions for example, contains the current version of V8:

process: {
    versions: {
        http_parser: '2.5.0',
        node: '4.2.4',
        v8: '4.5.103.35',
        uv: '1.7.5',
        zlib: '1.2.8',
        ares: '1.10.1-DEV',
        icu: '56.1',
        modules: '46',
        openssl: '1.0.2e'
    }
}

You should be able to query this object and determine the current engine.

like image 61
duncanhall Avatar answered Oct 02 '22 06:10

duncanhall