The embedded-v8 tag has no wiki summary.
6
votes
1answer
725 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 ...
6
votes
2answers
593 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, ...
5
votes
2answers
192 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 ...
3
votes
2answers
624 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
296 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
0answers
76 views
Hello World example for V8 using gyp
Since SCons has been deprecated. I used the gyp to generate vs solution.
I did what they told me on the build BuildingWithGYP.
And the v8 project builded ok!
and I got the v8_base.lib but no v8.lib.
...
1
vote
0answers
73 views
Installing PHPv8js on Ubuntu
I'm having some trouble installing phpv8js on Ubuntu.
I've made sure I have a recent version of libv8 installed and have the required version of PHP but the install fails using PECL.
Here's the ...
1
vote
2answers
345 views
v8 extension for node.js - cannot set FunctionTemplate to target
I'm just starting out with writing a binding to a C library (link-grammar, to be precise) via a v8 extension (following instructions on Node.JS docs and v8 API docs).
My problem is that I am getting ...
1
vote
3answers
332 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 ...
1
vote
1answer
199 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 ...
1
vote
1answer
412 views
In v8, how would I remove wrapped c++ objects after their javascript counterparts are garbage collected?
Ok, let's say I have the code provided in this tutorial: http://www.codeproject.com/KB/library/Using_V8_Javascript_VM.aspx
How would I modify this so that the Point C++ object that is created has ...
0
votes
3answers
113 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
2answers
447 views
C++ Console app, SetWindowsHookEx, Callback is never called
I have a little console application that has an embedded v8 engine, and I would like to add a hook to register key events. This all worked before when I was using Qt and QtScript, but I am porting it ...
0
votes
0answers
26 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. ...
0
votes
1answer
92 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 ...
0
votes
5answers
933 views
Embedding Mono vs Google V8?
We want to add scripting to a project.
We are hesitating which script engine to use.
I have used in the past V8 and it's quite impressive. I have used Mono as well but in toy-projects or prototypes ...
0
votes
1answer
220 views
Problem using accessors in V8
I'm writing a wrapper class around the V8 engine so that eventually I'll be able to do something like this
script->createClass("Test");
...
0
votes
5answers
470 views
Segmentation Fault when wrapping V8 in a class?
I want to use Google's Javascript Engine V8 in a project, and attempted to write a wrapper class for the engine. Parts of the Code are copied from samples/shell.cc, from the V8 Distribution.
However, ...
0
votes
1answer
365 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( ...