开发者

How can I reuse my javascript code between client and server?

I have some javascript code that includes an ANTLR-generated lexer and parser, and some associated syntax tree evaluation functionality. This code runs in the browser in my web app to support users who author code sni开发者_开发问答ppets which process scientific data.

Now I'd like to do some additional background processing on the server using the same generated parser. I would prefer not to have to re-implement this stuff in C# and have multiple bits of code that did the exact same thing. Performance isn't as critical to me as eliminating duplication, since this is a background process. So, how can I call into my javascript code from C#? And how can I format my script so that it plays nicely with my .NET web app?


Anyone who wants to do this who isn't running Windows should definitely check out node.js. Unfortunately for your purposes, I don't think the Windows port is working yet.

For server-side JS usage in general, CommonJS is trying to standardize how libraries are created and used. You can also find links there to a lot of server-side Javascript implementations.

Update: node.js will now work under CygWin. I'm not sure how much work it would be to integrate it into your environment though.


You could have a look at JScript.NET although there will be (at least some) differences with traditional (client-side) JavaScript (ECMA).


I have two idea's:

  • using Rhino Shell
  • generating html page with your javascript code and starting this page using WatiN or Selenium
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜