Does anyone use IronJS?

I'm just wondering if anyone else has IronJS in their apps?

IronJS is really awesome, like JavaScript on DLR. Personally, I was waiting to write both server and client code in ASP.NET/ASP.NET MVC using JavaScript. It's too bad Microsoft has abandoned Managed JScript, but no worries, as IronJS really shows promise.

I am wondering if anyone started using it in any of their applications?

I’ve played around a bit lately with the addition of ASP.NET MVC Controller Actions code functionality in JavaScript using IronJS.

+4
source share
3 answers

As an IronJS developer, I have to say that I use it. :)

However, most of my work has run command-line projects such as CoffeeScript (which works, 100%) and Uglify.js (which does not quite work).

If you find any rough edges, send them to the GitHub tracker. I will also be looking at the IronJS tag here on SO to help with any Q / A style queries.

+3
source

I played with the integration of ASP.NET MVC and IronJS, and the result was a new IronJSMVC project. If you are interested in IronJS, you will probably be interested in IronJSMVC.

https://github.com/crpietschmann/IronJSMVC

It is still at a very early stage of the prototype (at the time of publication) and is not yet intended for production. But do not let this scare you away from checking.

0
source

I really played a little in my DynamicPad project https://github.com/khebbie/Dynamicpad/

But decided to use IronRuby, as he is more mature

By the way, I also liked playing with IronJs in linqPad https://gist.github.com/1256505

0
source

Source: https://habr.com/ru/post/1368895/


All Articles