0

I am looking for a solution similar to Aptana's Jaxer where I can execute javascript server side.

David Robbins
  • 9,996
  • 7
  • 51
  • 82

2 Answers2

5

You have ASP JScript which works on IIS on the server-side. Its almost like standard JavaScript.

GeekTantra
  • 11,580
  • 6
  • 41
  • 55
  • IIS has been running server-side JScript - which is a compliant implementation of ECMAScript - since the Windows NT 4 Option Pack, sometime around 1998... – Dylan Beattie Sep 26 '11 at 22:05
2

Check out http://nodejs.org/.

It uses the V8 Engine which is the fastest javascript engine.

  • iisnode has made some amazing strides :) I've been using it alongside an MVC ASP.NET app (although you can use it by itself). – aikeru Jan 16 '13 at 02:34