Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Any Javascript Engine for .NET/C#? [closed]

I'm looking for an open source javascript engine for .NET. Thanks.

like image 404
Alon Gubkin Avatar asked Aug 16 '09 02:08

Alon Gubkin


4 Answers

You can check Jint which is a Javascript interpreter for .NET.

like image 179
Sébastien Ros - MSFT Avatar answered Sep 26 '22 03:09

Sébastien Ros - MSFT


Try Javascript .NET:

http://javascriptdotnet.codeplex.com/

It implements Google V8. You can compile and run Javascript directly from .NET code with it, and supply CLI objects to be used by the Javascript code as well. And V8 is probably the best engine ever created in terms of performance, it generates native code from Javascript.

like image 44
Jordane Green Avatar answered Sep 24 '22 03:09

Jordane Green


There was, at one time, a clone of JavaScript that ran on the DLR. But now it's dead.

A quick search turns up RemObjects Script and ECMAScript.NET. Might as well start there...

like image 25
Shog9 Avatar answered Sep 24 '22 03:09

Shog9


You might want to check out Managed JScript. It sounds like something you are looking for, but I don't really know much about it.

Edit: Sounds like Managed JScript is dead according to another post, so I would look into Google's V8.

You can also use Google's V8 Engine from .NET. Check out this other question, and the provided solution: Referencing Google's V8 engine from a .NET app. This example uses Managed C++.

like image 40
mkchandler Avatar answered Sep 25 '22 03:09

mkchandler