Tagged Questions
3
votes
3answers
236 views
“Hello World” + JS V8 + VS2010
I downloaded and built JS V8 for using in VS2010 in Release mode. Now I try run Hello World example:
#include "v8.h"
int _tmain(int argc, _TCHAR* argv[])
{
v8::HandleScope handle_scope;
...
2
votes
2answers
354 views
Why does v8 saves the source code of native javascript in generated binaries?
I've been studying the v8 source, particularly at how the 'mksnapshot' tool includes a compiled image of the native javascript files(runtime.js, json.js...) in the v8 binaries and noticed that it also ...
0
votes
1answer
133 views
Does glBindTexture() require a GLuint pointer?
I'm trying to implement OpenGL bindings for Texture usage in OpenGL/V8/JavaScript.
My question is pretty simple:
Does OpenGL's glBindTexture() method require a pointer to a GLuint or does it only ...
4
votes
2answers
220 views
How to “Lock down” V8?
I'm new to V8 and plan on using it in a python web application. The purpose is to let users submit and execute certain JS scripts. Obviously this is a security threat so I'm looking for resources that ...
0
votes
2answers
563 views
Rubyracer (V8 binding for Ruby) performs really slow
So, I have a TCP server in eventmachine and therubyracer is used as a way to pre-pend operations (like filters or extensions) to the server. It all works charming when the server is not receiving a ...
4
votes
3answers
1k views
Access the Abstract Syntax Tree of V8 Engine
Is it possible to access the AST of the v8 engine, for a given JavaScript code? I'm working on a JavaScript Static Analyzer using V8 engine.
2
votes
3answers
634 views
http functions in V8 javascript engine
I want to use the V8 javascript engine standalone, e.g. I will run it in command line as explained here:
$> ./v8-shell -e 'print("10*10 = " + 10*10)'
I want the javascript to perform some http ...
0
votes
0answers
46 views
where to find embedded-v8 sources to build?
I tried http://v8.googlecode.com/svn/trunk/v8-read-only but I got a 404 error. I just need the library to be compiled, I am not interested in editing the source so I do not need snv, scons, and so on. ...
1
vote
4answers
1k views
Are there any HTML5 Canvas implementations for embedding in c++
I'm working on a browser based game atm and already looking into options porting it to other platforms such as consoles or devices where playing in a web browser may not be suitable.
The game is ...
8
votes
1answer
3k views
How to expose “native functions” to Javascript in a web page using Chromium and Delphi 6?
I have successfully embedded Chromium into my Delphi 6 projects with the help of Delphi Chromium Embedded. Now I want to be able to execute Javascript code and the have results returned to my host ...
2
votes
1answer
678 views
V8 JavaScript Engine and Mac App Store
If I embed the V8 JavaScript Engine in my application (a game) is it still possible to distribute it in the Mac & iOS App Stores?
1
vote
1answer
218 views
v8 Cannot access properties from script compiled in new context
I've created a simple 'require' mechanism (https://gist.github.com/1031869), in which the included script is compiled and run in a new context. However, when I call a function in the included script ...
9
votes
3answers
5k views
How can I embed V8 in a Java application?
I'm looking for a solution for embedding the Google JavaScript engine V8 in my Java application.
Have you got some solutions?
5
votes
2answers
2k views
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 switched to BSON which is marginally faster.
Encoding 10000 sample objects
...
2
votes
1answer
422 views
Including Google's V8 Javascript Engine in a QTCreator C++ Console Project
How do I include Google's V8 Javascript Engine in a QTCreator Console Project?
I have already compiled V8 and I have played around with the example shell and d8 developer shell. I'd like to start ...
2
votes
1answer
1k views
In V8, how would I remove wrapped C++ objects after their JavaScript counterparts are garbage-collected?
Let's say I have the code provided in this tutorial.
How would I modify this so that the Point C++ object that is created has its destructor called and is deleted from memory when the GC for V8 ...
0
votes
1answer
671 views
how to create an utf8 string in Google V8 engine
Hello Im using v8 engine embedded in C++ program and I met a string problem.
Well of course v8 engine fully support utf8 string, but i just dont know how.
char path[ 1024 ];
GetCurrentDirectory( ...
7
votes
2answers
1k 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, ...

