Referencing Google's V8 engine from a .NET app - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T11:24:31Zhttp://stackoverflow.com/feeds/question/356948http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://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/356948/referencing-googles-v8-engine-from-a-net-app/357284#3572846Answer by Ryan Cook for Referencing Google's V8 engine from a .NET appRyan Cook2008-12-10T19:29:02Z2008-12-10T21:42:37Z<p><em>I realize that this may not be an exact answer to your question, but I figured I would put my 2 cents worth in as I doubt to many people have tried this.</em></p>
<p>I got it to work by created a managed wrapper using mixed mode C++. There are other ways to do it, but I was going to attempt to make a full wrapper that could be used from any .Net language.</p>
<p>Getting the lib to compile in such a way that it could be included in a mixed mode project was a little bit of a challenge. I had to modify the runtime library (in the SConstruct file) used to /MD and /MDd so that it would be compatible with the /clr switch.</p>
<p>So far I have only simple scripts running as I have not implemented callbacks, custom methods, objects and such.</p>
<p>Here is a quick sample of what the usage looks like for one of my test apps:</p>
<pre><code>V8DotNet.Shell shell = new V8DotNet.Shell();
shell.ExecuteScript(@"print('V8 version is: ' + version());");
</code></pre>
<p>It runs more complicated scripts like a base64 encoder fine as well. But for now I can only add custom items from the c++ side.</p>
<p>I am willing to provide more information + code if anyone is interested as I may not ever pick this project back up. But, I'm afraid it way to much code to go into a post here so we would have to find some other medium like google code or codePlex.</p>
<p><strong>Edit:</strong></p>
<p><hr /></p>
<p>OK, I've uploaded the code. I do have to put a disclaimer on this: <em>The project is very early and I am an amateur at C++ at best so don't get your hopes up to much. Also, this project was created/done just after chrome was released so the version of v8 included may be old.</em></p>
<p>That said, here it is: <a href="http://ryanscook.com/Files/V8-DotNet.zip" rel="nofollow">http://ryanscook.com/Files/V8-DotNet.zip</a> (21.5 MB)</p>
<p>In the package you'll find the following items of interest:</p>
<blockquote>
<p><strong>V8Net-Library\V8.Net\V8.Net.sln -</strong> This
is the solution that has the managed
C++ wrapper proj and a C# console app
for testing.</p>
<p><strong>Dependencies\V8 -</strong> This is my V8 code
that I used to build the V8 lib.</p>
</blockquote>
<p>Hope it helps!</p>
http://stackoverflow.com/questions/356948/referencing-googles-v8-engine-from-a-net-app/357352#3573520Answer by Jonathan C Dickinson for Referencing Google's V8 engine from a .NET appJonathan C Dickinson2008-12-10T19:48:16Z2008-12-10T19:48:16Z<p>From what I hear compiling it with IJW (Managed C++) should just work - but I may be really wrong, I have never touch MC++.</p>
http://stackoverflow.com/questions/356948/referencing-googles-v8-engine-from-a-net-app/357402#3574020Answer by NathanD for Referencing Google's V8 engine from a .NET appNathanD2008-12-10T20:02:51Z2008-12-10T20:02:51Z<p>Ryan:
Thanks for the help. I'd like to do a build with the /clr switch - like what you did. I have no experience whatsoever with Scons. Mind letting me know in more detail the changes you made to SConstruct file. Particularly, where you specify the <code>/clr</code> switch. Also, It looks like for a shared lib, <code>/MD</code> is already used.</p>
<p>Thanks in advance for your help.</p>
http://stackoverflow.com/questions/356948/referencing-googles-v8-engine-from-a-net-app/357441#3574410Answer by Orion Edwards for Referencing Google's V8 engine from a .NET appOrion Edwards2008-12-10T20:13:14Z2008-12-10T20:13:14Z<p>Microsoft <a href="http://blogs.msdn.com/hugunin/archive/2007/04/30/a-dynamic-language-runtime-dlr.aspx" rel="nofollow">are building a real javascript - not "JScript" - runtime</a> (along with IronPython, IronRuby, and VB10) on the CLR using the DLR, but I can't find any downloads or content for it. Perhaps this will arrive with C# 4?</p>
http://stackoverflow.com/questions/356948/referencing-googles-v8-engine-from-a-net-app/824302#8243020Answer by Ziv Rosenzweig for Referencing Google's V8 engine from a .NET appZiv Rosenzweig2009-05-05T10:38:19Z2009-05-05T10:38:19Z<p>Ryan,
Your code was great but I need a way to add a FunctionTemplate that will call a C# function.
On you demo you created the print function but it was declared as a native C++ function.
<br><br>
Thanks in advance for your help</p>
http://stackoverflow.com/questions/356948/referencing-googles-v8-engine-from-a-net-app/1743907#17439070Answer by Dan for Referencing Google's V8 engine from a .NET appDan2009-11-16T18:15:41Z2009-11-16T18:15:41Z<p>Hey Ryan, is there anyway you can repost your project? It doesn't seem to be available any longer. Thanks.</p>