Tagged Questions

V8 is Google's open source JavaScript engine.

learn more… | top users | synonyms

206
votes
10answers
33k views

What is node.js?

I don't fully get what node.js is all about. Maybe it's because I am mainly a web based business app developer. Can someone please explain what it is and the use of it? Thanks. My understanding so ...
41
votes
5answers
14k views

What IDE to use for Node.js / Javascript? [closed]

What is your preference when it comes to editing/debugging large JavaScript projects, containing number of relatively big JS files? Please list your choice, why do you like it compared to others; If ...
32
votes
5answers
9k views

Running V8 Javascript Engine Standalone

I want to run a Javascript console on top of V8. How do I do this?
30
votes
3answers
1k views

Math.random() returns value greater than one?

While playing around with random numbers in JavaScript I discovered a surprising bug, presumably in the V8 JavaScript engine in Google Chrome. Consider: // Generate a random number [1,5]. var rand5 ...
26
votes
5answers
1k views

Why is new slow?

The benchmark: JsPerf The invariants: var f = function() { }; var g = function() { return this; } The tests: Below in order of expected speed new f; g.call(Object.create(Object.prototype)); ...
23
votes
6answers
5k views

Referencing Google's V8 engine from a .NET app

I'm building a .NET 3.5 application and have the need to evaluate JS code on the server - basically a user provided rule set that can work within a browser or on the server. Managed JS is not an ...
21
votes
1answer
535 views

V8 and ECMAScript differences

Where can I find a list of all the differences between V8 and ECMAScript? For example V8 supports const, which isn't part of the ECMAScript standard.
19
votes
2answers
365 views

How does the following code work?

#define TYPE_CHECK(T, S) \ while (false) { \ *(static_cast<T* volatile*>(0)) = ...
13
votes
1answer
234 views

Creating an object twice produces different results

I have the javascript code below. On Chrome, Firefox, Android emulator, Firefox on a Samsung Galaxy S (Gingerbread 2.3.3), and Safari on an iPod it works fine. On the native browser on the Samsung ...
13
votes
6answers
4k views

Managing lots of callback recursion in Nodejs

In Nodejs, there are virtually no blocking I/O operations. This means that almost all nodejs IO code involves many callbacks. This applies to reading and writing to/from databases, files, processes, ...
12
votes
3answers
322 views

Why is Function.prototype.bind slow?

When comparing this benchmark with chrome 16 vs opera 11.6 we find that in chrome native bind is almost 5 times slower then an emulated version of bind in opera native bind is almost 4 times faster ...
12
votes
3answers
2k views

How do you free a wrapped C++ object when associated Javascript object is garbage collected in V8?

V8's documentation explains how to create a Javascript object that wraps a C++ object. The Javascript object holds on to a pointer to a C++ object instance. My question is, let's say you create the ...
11
votes
1answer
238 views

Chrome V8 Bug? Function Acting different after being called a 2nd time

Please take a look at the following JavaScript. I've taken stuff out of it, so you may focus on the essence of the problem. You'll notice that I call the prepPath function twice in a row, passing in ...
11
votes
4answers
3k views

How do you expose a C++ class in the V8 Javascript Engine so it can be created using new?

The official examples of exposing a Point class seem to assume that there will be a fixed number of instances of it in your program. It is not clear how new instances are allocated in the C++ code, ...
11
votes
6answers
2k views

Executing Javascript without a browser?

I am looking into Javascript programming without a browser. I want to run scripts from the Linux or Mac OS X command line, much like we run any other scripting language (ruby, php, perl, python...) $ ...
11
votes
4answers
3k views

Javascript Engines Advantages

I am confused about javascript engines right now. I know that V8 was a big deal because it compiled javascript to native code. Then I started reading about Mozilla SpiderMonkey, which from what I ...
10
votes
1answer
122 views

Is it safe to use the node v8 options in a production environment?

node.js provides lower layer V8 options too. These options are very low layer like garbage collection or heap algo. # node --v8-options Options: --harmony_typeof (enable harmony semantics for ...
10
votes
4answers
269 views

What is the performance of Objects/Arrays in JavaScript? (specifically for Google V8)

Performance associated with Arrays and Objects in JavaScript (especially Google V8) would be very interesting to document. I find no comprehensive article on this topic anywhere on the Internet. I ...
10
votes
1answer
326 views

Does Android's JNI JavaScript binding efficiently pass TypedArray / ArrayBuffer to Java as an array?

In the Android JNI binding, you can expose a Java method such as method(int[] intArray) {} to JavaScript, pass it a JavaScript array, and expect the binding to convert that JavaScript array to int[]. ...
10
votes
2answers
1k views

How do I escape a string for a shell command in nodejs (V8 Javascript engine)?

In nodejs, the only way to execute external commands is via sys.exec(cmd). I'd like to call an external command and give it data via stdin. In nodejs there does yet not appear to be a way to open a ...
9
votes
1answer
194 views

How exactly does V8 optimize/inline?

I'm wondering whether it is possible to get knowledge of how exactly V8 optimizes and inlines things. I created three simple test functions which all calculate the sine of a angle in degrees. I put ...
9
votes
1answer
414 views

Any anti-patterns of nodejs? [closed]

What are the anti-patterns of node.js, what should you avoid when developing with node.js? Dangers like GC, closure, error handling, OO and so on.
9
votes
3answers
2k views

garbage collection with node.js

I was curious about how the node.js pattern of nested functions works with the garbage collector of v8. here's a simple example readfile("blah", function(str) { var val = getvaluefromstr(str); ...
9
votes
4answers
2k views

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 by eval(str); I had like to catch it and print the the line number that caused the ...
9
votes
2answers
786 views

IDE for ECMAScript-262 with in IDE execution / debugging for node.js/V8

I currently use Eclipse as my IDE for other languages and I'm rather used to not having to leave the IDE for anything - however I'm really struggling to find the same or a similar setup for pure ...
8
votes
2answers
225 views

NodeJS memory consumption in an infinite loop

I don't know if this is a bug with Node or V8, but if I run the following code the node process leaks memory. The GC never seems to kick in and in a few seconds it's consuming >1GB of memory. This is ...
8
votes
3answers
218 views

What are the key semantic differences between Ruby and Javascript

If one were to implement Ruby on top of a Javascript engine (either in the browser or on top of standalone V8 or Spidermonkey), what would be the key impedance mismatches between the Ruby and JS ...
8
votes
2answers
2k views

embed javascript engine in iOS application

I wonder if anyone has successfully ported a javascript engine/interpreter to iOS. I'm writing an iPhone game that I would like to use Javascript as the high-level scripting language (AI, gameplay, ...
8
votes
4answers
1k views

Are there any precompiled binaries for 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 ...
8
votes
1answer
1k views

Throwing a JavaScript exception from C++ code using Google V8

I'm programming a JavaScript application which accesses some C++ code over Google's V8. Everything works fine, but I couldn't figure out how I can throw a JavaScript exception which can be catched in ...
8
votes
2answers
870 views

Building v8 without JIT

I would like to run some tests on v8 with and without JIT to compare performances. I know JIT will improve my average speed performance, but it would be nice for me to have some actual more detailed ...
7
votes
2answers
513 views

Why does this V8/Javascript code perform so badly?

I've been looking at some interesting programming benchmarks to see how well node.js might perform compared to other languages: ...
7
votes
1answer
1k views

Is Google's V8 JavaScript engine available for iOS?

Can I use V8 on iOS? If not, which embeddable JavaScript engine do you recommend? EDIT: We don't plan on using it in conjunction with HTML rendering, just for internal scripting.
7
votes
1answer
874 views

Node.js and V8 garbage collection

Here's what's I've read so far, and correct me if I'm wrong: Node.js is based on V8 JavaScript engine. V8 JavaScript engine implements stop-the-world garbage collection Which..causes Node.js to ...
6
votes
1answer
85 views

What's the maximum size of a Node.js Buffer

According to the Node.js Buffer class documentation Buffers are allocated outside of the V8 heap. http://nodejs.org/docs/latest/api/buffers.html Raw data is stored in instances of the Buffer ...
6
votes
1answer
2k views

node.js in Eclipse - which plugin(s) are most people using?

I'm mostly interested in server-side stuff, though being able to redeploy some bits in Chrome would be nice. (currently running Eclipse Indigo on Ubuntu for mostly Java/Scala + git stuff) So far ...
6
votes
1answer
721 views

What version of Javascript is supported in node.js

I'm getting started with node.js and I'm having a hard time figuring out what version of Javascript is supported by node which makes it difficult figuring out what features I can use. Here's what I ...
6
votes
3answers
1k views

Is it possible to make Node.js use Rhino as the Javascript engine?

I use Node.js for several jobs on my web apps and so far everthing's ok. But the Node.js uses Google's V8 as the default Javascript engine (JSE) and V8 runs exlusively on the x86 and ARM Instruction ...
6
votes
1answer
533 views

Embed V8 in OpenCL application?

I am using OpenCL to write GPGPU kernels which target the NVidia CUDA runtime. I was recently reading up on V8 and found the page describing V8 embedding techniques: ...
6
votes
2answers
578 views

JavaScript Standard Library for V8

In my application, I allow users to write plugins using JavaScript. I embed V8 for that purpose. The problem is that developers can't use things like HTTP, Sockets, Streams, Timers, Threading, ...
6
votes
3answers
1k views

Confusing operation of JavaScript `var` keyword

I’ve run into a very strange (to me) problem with the var keyword. I’ve reduced it to a fairly minimal test case, and found it’s exhibited in Node.js (thus, V8 and Chrome), Safari 4’s inspector (thus, ...
6
votes
2answers
1k views

How do you include another js file in Google's v8?

How do you include another script file inside a .js script file in v8? There's the <script> tag in HTML but how can it be done inside a v8 embedded program?
5
votes
6answers
51 views

Defining a JavaScript object in console

When I type simple objects to Chrome JavaScript Console, I get an output like this: >true true >1/3 0.3333333333333333 And so on. But a syntax error occurs when I type objects: >{ a: 1, ...
5
votes
2answers
120 views

Javascript - poor performance in V8 of functions added to String.prototype?

I've been using some code to extract unsigned 16 bit values from a string. I discovered that adding this function to the prototype for String: String.prototype.UInt16 = function(n) { return ...
5
votes
2answers
179 views

Does node.js have any performance advantage over client-side Javascript (vs. Chrome/V8)?

I'm currently writing a client-side javascript app which performs image manipulation. Some of the operations it performs currently are quite slow to run in the browser (taking in order of 2-3 seconds) ...
5
votes
5answers
189 views

get all values of the closure in node.js or V8

For example, if we assume the following code: var f = function() { return 'hello world' }; var x = 10; var y = 314; var g = function() { var buf = [], xx = x; while (xx--) ...
5
votes
8answers
318 views

Why doesn't node.js have a native DOM?

When I discovered NodeJS was built on the V8 Javascript engine I thought "Great, web scraping will be easier, as the page will be rendered like in the browser, with a 'native' DOM there supporting ...
5
votes
2answers
181 views

Perl: Javascript::V8 templates - from the perl

Looking for template engine like HTML::Mason (or Mason), so what "compiles" source components into perl code, but instead of perl-code will "compile" components into JavaScript code and after ...
5
votes
1answer
582 views

When will v8 implement ECMAScript 5?

I noticed that v8 is rather mute on the issue of ECMAScript 5th edition. V8 implements ECMAScript as specified in ECMA-262, 3rd edition, and runs on Windows XP and Vista, Mac OS X 10.5 (Leopard), ...
5
votes
1answer
637 views

Understanding Google V8's Architecture

I'm not sure I understand V8's architecture (yes, I've read its documentation). In C# with the v8sharp wrapper I write something like this, for example: namespace App { class Point { ...

1 2 3 4 5