Top "V8" questions

V8 is Google's open source JavaScript engine.

Javascript eval() Exception - line number

In JavaScript I have a var str = ".a long string that contains many lines..." In case of exception that caused …

javascript exception eval node.js v8
How can I detect which javascript engine (v8 or JSC) is used at runtime in Android?

Newer versions of Android ( > 2.2) include the v8 javascript engine, while older versions only had JSC. However, according to http://…

javascript android v8 javascript-engine
Compile JavaScript to Native Code with V8

Is it really possible, with Google's V8 Engine, to compile JavaScript into Native Code, save it as a binary file, …

javascript c++ v8 native-code
Why is <= slower than < using this code snippet in V8?

I am reading the slides Breaking the Javascript Speed Limit with V8, and there is an example like the code …

javascript v8
how to know which javascript version in my NODEJS?

I want to know which javascript version is my NodeJS is supporting ?

javascript node.js version v8
How to run user-submitted scripts securely in a node.js sandbox?

What are the options for running (possibly malicious) user-submitted scripts in node.js, securely? I.e. in an environment that …

javascript node.js v8
Nodejs: What does `process.binding` mean?

I've seen process.binding('...') many times while researching through the node.js source code on github. Can anybody …

javascript c++ node.js v8 undocumented-behavior
What is the relationship between Node.js and V8?

I've been thinking about this question for a while and can't seem to find the answer. What is the relationship …

node.js v8
Fastest possible Javascript object serialization with Google V8

I need to serialize moderately complex objects with 1-100's of mixed type properties. JSON was used originally, then I …

javascript serialization v8 bson embedded-v8
In Nodejs, when I console.log a req object, what does [Circular] reference? How to determine that

In Nodejs, when I console.log a req object, what does [Circular] mean? Here's an example console.log(req) against …

node.js v8 circular-reference