active questions tagged v8 - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T01:56:00Zhttp://stackoverflow.com/feeds/tag/v8http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1802478/running-v8-javascript-engine-standalone3Running V8 Javascript Engine StandaloneManuel2009-11-26T09:10:42Z2009-11-26T09:38:27Z
<p>I want to run a Javascript console on top of V8. How do I do this?</p>
http://stackoverflow.com/questions/1779858/how-do-i-escape-a-string-for-a-shell-command-in-nodejs-v8-javascript-engine4How do I escape a string for a shell command in nodejs (V8 Javascript engine)?Maciek2009-11-22T20:21:52Z2009-11-24T04:47:26Z
<p>In <a href="http://nodejs.org/" rel="nofollow">nodejs</a>, 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 command and then push data to it (only to exec and receive its standard+error outputs), so it appears the only way I've got to do this right now is via a single string command such as:</p>
<pre><code>var dangerStr = "bad stuff here";
sys.exec("echo '" + dangerStr + "' | somecommand");
</code></pre>
<p>Most answers to questions like this have focused on either regex which doesn't work for me in nodejs (which uses Google's V8 Javascript engine) or native features from other languages like Python.</p>
<p>I'd like to escape dangerStr so that it's safe to compose an exec string like the one above. If it helps, dangerStr will contain JSON data.</p>
http://stackoverflow.com/questions/356948/referencing-googles-v8-engine-from-a-net-app7Referencing Google's V8 engine from a .NET appNathanD2008-12-10T17:47:07Z2009-11-16T18:15:41Z
<p>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 option, because the JS code would be provided at runtime. Aptana's Jaxer is also not an option. So I was looking into using a build of the V8 engine within my app.</p>
<p>I built the source successfully into a DLL, but that DLL is not not a managed library and is not COM either. V8 is just plain C++.</p>
<p>Any ideas as to how to interop with this type of DLL in C#? Also, I'm open to other suggestions for SpiderMonkey or another JS engine.</p>
<p>Thanks in advance.</p>
<p><strong>UPDATE:</strong></p>
<p>I was able to use Ryan's solution. I just updated the references to the build for the latest from trunk. It worked great. Thanks Ryan.</p>
http://stackoverflow.com/questions/1719258/is-it-possible-to-use-d8-to-measure-memory-usage1Is it possible to use d8 to measure memory usage?jnman2009-11-12T01:20:15Z2009-11-12T01:49:16Z
<p>With the release of the Closure compiler, I was hoping to see if there was a difference in memory usage between a js file using the compiler and one which had not. </p>
<p>In particular, on a mobile platform like Palm's WebOS, the very limited amount of memory available means that every little bit will help.</p>
<p>EDIT: I should point out that d8 is the v8 javascript engine debugger. </p>
http://stackoverflow.com/questions/301422/what-are-the-code-and-data-footprints-of-the-leading-javascript-engines-v8-squ3 What are the code and data footprints of the leading javascript engines? (V8, Squirrelfish, TraceMonkey..)Marty2008-11-19T09:53:01Z2009-11-05T04:34:43Z
<p>Since the speed of the top Javascript engines seems to be on par, the next criteria is footprint. What are the code and data footprints of the leading javascript engines?</p>
http://stackoverflow.com/questions/40994/is-google-chromes-v8-engine-really-that-good3Is Google Chrome's V8 engine really that good?Juan Manuel2008-09-03T01:09:04Z2009-09-17T16:56:11Z
<p>Did anyone have time to take a look at it? </p>
<p>I've read a bit and it promises a lot, if it's half what they say, it'll change web programming a lot</p>
http://stackoverflow.com/questions/1152367/how-to-turn-the-v8-compiled-javascript-into-an-exe1How to turn the V8 compiled javascript into an EXE?the_drow2009-07-20T08:37:06Z2009-09-10T18:01:55Z
<p>I know that google's v8 compiles javascript into native machine (binary if I understand correctly) code.<br />
Is there a way to take the output and turn it into a exe?</p>
http://stackoverflow.com/questions/1366599/throwing-a-javascript-exception-from-c-code-using-google-v83Throwing a JavaScript exception from C++ code using Google V8Etan2009-09-02T09:08:54Z2009-09-02T17:02:28Z
<p>I'm programming a JavaScript application which accesses some C++ code over Google's V8.</p>
<p>Everything works fine, but I couldn't figure out how I can throw a JavaScript exception which can be catched in the JavaScript code from the C++ method.</p>
<p>For example, if I have a function in C++ like</p>
<pre><code>...
using namespace std;
using namespace v8;
...
static Handle<Value> jsHello(const Arguments& args) {
String::Utf8Value input(args[0]);
if (input == "Hello") {
string result = "world";
return String::New(result.c_str());
} else {
// throw exception
}
}
...
global->Set(String::New("hello"), FunctionTemplate::New(jsHello));
Persistent<Context> context = Context::New(NULL, global);
...
</code></pre>
<p>exposed to JavaScript, I'ld like to use it in the JavaScript code like</p>
<pre><code>try {
hello("throw me some exception!");
} catch (e) {
// catched it!
}
</code></pre>
<p>What is the correct way to throw a V8-exception out of the C++ code?</p>
http://stackoverflow.com/questions/1184086/how-to-incoparate-or-implement-a-dom-api-to-v81How to incoparate or implement a DOM API to v8?the_drow2009-07-26T09:03:55Z2009-08-23T06:43:00Z
<p>I am writing a server application that is able to manipulate the DOM before it is served to the client.<br />
I am using C++ and Google's v8 as a javascript engine but I don't see any DOM API in v8.<br />
Is there an open source implementation for doing DOM manipulation on HTML?<br />
If not how would you implement one?</p>
http://stackoverflow.com/questions/1149340/how-do-you-include-another-js-file-in-googles-v81How do you include another js file in Google's v8?the_drow2009-07-19T06:17:09Z2009-08-23T06:34:10Z
<p>How do you include another script file inside a .js script file in v8?<br />
There's the <script> tag in HTML but how can it be done inside a v8 embedded program?</p>
http://stackoverflow.com/questions/1296370/building-v8-without-jit1Building v8 without JITrames2009-08-18T20:40:14Z2009-08-18T21:40:15Z
<p>Hello,</p>
<p>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 tests results as I want to work with mobile platforms.</p>
<p>I haven't found how to enable or disable JIT like it exists on Squirrelfish (cf. ENABLE_JIT in JavaScriptCore/wtf/Platform.h).</p>
<p>Does somebody knows how to do that with v8?</p>
<p>Thanks.</p>
<p>Alexandre</p>
http://stackoverflow.com/questions/277423/how-can-i-see-the-machine-code-generated-by-v83How can I see the machine code generated by v8?estark2008-11-10T09:31:58Z2009-07-29T01:04:41Z
<p>Does anybody know how I can see the actual machine code that <a href="http://code.google.com/p/v8/" rel="nofollow">v8</a> generates from Javascript? I've gotten as far as <code>Script::Compile()</code> in <code>src/api.cc</code> but I can't figure out where to go from there.</p>
http://stackoverflow.com/questions/328718/v8-javascript-engine-on-windows-mingw1V8 JavaScript Engine on Windows (MinGW)bhadra2008-11-30T10:41:21Z2009-07-19T17:55:51Z
<p>The <a href="http://code.google.com/p/v8/wiki/BuildingOnWindows" rel="nofollow">build instructions of V8 JavaScript Engine</a> mention only Visual Studio 2005 and 2008. Has anybody been successful with <a href="http://mingw.org/" rel="nofollow">MinGW</a> on Windows XP/Vista?</p>
http://stackoverflow.com/questions/706908/cant-convert-function-pointer-argument0Can't convert function pointer argumentheeen2009-04-01T18:55:38Z2009-04-01T20:27:45Z
<p>The error I'm getting:</p>
<pre><code>error C2664: 'v8::FunctionTemplate::New' : cannot convert parameter 1 from 'v8::Handle<T> (__cdecl *)(const v8::Arguments &)' to 'v8::InvocationCallback'
</code></pre>
<p>Relevant definitions:</p>
<pre><code>typedef Handle<Value> (*InvocationCallback)(const Arguments& args);
template<class C> class V8ScriptClass
{
public:
template<class C, typename Rtype, typename Ptype1, Rtype (C::*FuncPtr)(Ptype1)>
void RegisterFunc(const char* const scriptname)
{
objtemplate->Set(
v8::String::New(scriptname),
v8::FunctionTemplate::New(
V8ScriptClass<C>::RelayCallback<C, Rtype, Ptype1, FuncPtr>
));
};
template<typename Rtype, typename Ptype1, Rtype (*FuncPtr)(Ptype1 param1)>
static v8::Handle<v8::Value> RelayCallback(const v8::Arguments& args)
{
std::cerr<<__FUNCTION__<<std::endl;
v8::HandleScope handle_scope;
return handle_scope.Close(toJSType( ((FuncPtr)(toCType(args[0]))) ));
};
</code></pre>
<p>Looks to me like the typedef and the actual function signature are identical.</p>
<p>edit: forgot one declaration:</p>
<pre><code>class EXPORT FunctionTemplate : public Template {
public:
/** Creates a function template.*/
static Local<FunctionTemplate> New(
InvocationCallback callback = 0,
Handle<Value> data = Handle<Value>(),
Handle<Signature> signature = Handle<Signature>());
</code></pre>
http://stackoverflow.com/questions/452917/googles-v8-javascript-engine-in-net0Google's V8 Javascript Engine in .Net? [closed]spamcorp2009-01-17T06:45:05Z2009-01-17T07:39:56Z
<p>Has anyone been able to do this?</p>
http://stackoverflow.com/questions/423080/aw-snap-google-chrome-error1Aw, Snap! (Google Chrome error)Kyle Cronin2009-01-08T02:46:19Z2009-01-08T06:40:28Z
<p>I'm currently giving Windows 7 (32-bit) a spin, and I decided to also check out Google Chrome. However, when I loaded up this page:</p>
<p><a href="http://sof.modos.org/tracker/chart/6309/all" rel="nofollow">http://sof.modos.org/tracker/chart/6309/all</a> (don't click if you use IE!)</p>
<p>I get:</p>
<p><img src="http://modos.org/awsnap.png" width="650"></p>
<p>Opera, Firefox, and Safari all load the page fine. Only Google Chrome and IE have a problem with the page (IE 8.0.7000.0 stops responding). The only thing I can think of is that the page contains a lot of data points (over 2000) for JQuery Flot to graph. Is this a known problem? Is there anything I can tweak to make it work the way I want it to?</p>
<p><strong>update:</strong> In the comments two people have reported that Chrome renders the site fine under Windows XP. It sounds like this could be a problem specific to Windows Vista/7.</p>
http://stackoverflow.com/questions/406097/how-do-the-various-javascript-optimization-projects-affect-dom-performance3How do the various Javascript optimization projects affect DOM performance?Alan Storm2009-01-02T05:19:06Z2009-01-02T08:52:14Z
<p>There's a lot of capital C, capital S computer science going into Javascript via the Tracemonkey, Squirrelfish, and V8 projects. Do any of these projects (or others) address the performance of DOM operations, or are they purely Javascript computation related?</p>
http://stackoverflow.com/questions/173366/how-do-you-free-a-wrapped-c-object-when-associated-javascript-object-is-garbage5How do you free a wrapped C++ object when associated Javascript object is garbage collected in V8?steveth452008-10-06T06:41:32Z2008-12-17T19:25:08Z
<p>V8's documentation explains <a href="http://code.google.com/apis/v8/embed.html#dynamic" rel="nofollow">how to create a Javascript object that wraps a C++ object</a>. The Javascript object holds on to a pointer to a C++ object instance. My question is, let's say you create the C++ object on the heap, how can you get a notification when the Javascript object is collected by the gc, so you can free the heap allocated C++ object?</p>