Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are there any precompiled binaries for V8?

Tags:

node.js

v8

V8 is an important part of node.js, which uses the Google V8 Javascript engine. Building V8 on my windows box [Windows 7/64-bit] is going to take me hours of grabbing and installing tools I'm not familiar with (though I do use Cygwin). It'd save me a lot of headaches if there were some binary installers out there. Google search didn't return any obvious locations - do the guru's here know of any?

Even if you don't know of any for my exact environment, sharing others here would help folks in the same boat...

like image 317
F. Randall Farmer Avatar asked Jan 27 '11 16:01

F. Randall Farmer


People also ask

How V8 engine works in Nodejs?

V8 is known to be a JavaScript engine because it takes JavaScript code and executes it while browsing in Chrome. It provides a runtime environment for the execution of JavaScript code. The best part is that the JavaScript engine is completely independent of the browser in which it runs.

Is the V8 engine open source?

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.


1 Answers

There is no V8 binary in node.js. Instead, V8 is bound into the node.js binary.

Just build it on Cygwin like everyone else. If, like me you have to use an XP SP3 Atom powered netbook, then type make, and go to bed. In the morning it is done.

0.5.0pre build fine on Cygwin.

like image 131
Michael Dillon Avatar answered Oct 15 '22 04:10

Michael Dillon