In Java, it is possible to interp开发者_JAVA百科ret various scripting languages dynamically from within the JVM at runtime. This makes it possible to dynamically evaluate Ruby, Javascript, Scala, and other code without recompiling. (https://scripting.dev.java.net/)
Is it possible to do something similar in the .Net environment that would be deployable to Azure? If so, what languages are best supported?
Today, the simplest way to do that would be to use Node.js in Windows Azure. It does not leverage .NET, but it is a good way to run JavaScript on the server side. Windows Azure can run Node.js in Windows Azure Web Sites for example. More information at http://www.windowsazure.com/en-us/develop/nodejs/
精彩评论