Using JScript.NET today?

Viewed 806

Is it a good idea to use JScript.NET these days? Is there any IDE or text editor for JScript.NET? Is there any modern programming language on the CLR that has eval on language level (without the need of external libraries)?

2 Answers

I actually use JScript.NET all the time, I'm probably the only one that still does. It's very useful for making console apps without needing any extras to be installed on the machine.

It's not needed to download anything to start coding in JScript.NET, the jsc.exe compiler comes builtin to Windows 10, and you can compile a simple JScript.NET app to about 20k filesize, which is a lot less than is required just to run a Node script -> download Node (40mb) -> install Node -> run script.

The version of JavaScript is a bit weird, but not so different from modern ES5-ES6, like it has ...rest args in functions, and it has Class, Extends etc, and it has all the .NET goodies if you want to use them, and also optional strong-typing.

Related