How can I compile CoffeeScript from .NET?

后端 未结 18 1952
后悔当初
后悔当初 2020-12-23 01:54

I want to write an HttpHandler that compiles CoffeeScript code on-the-fly and sends the resulting JavaScript code. I have tried MS [JScript][1] and IronJS without success. I

18条回答
  •  暖寄归人
    2020-12-23 02:30

    I wrote an inteructive shell using v8.

    https://github.com/mattn/coffee-script-v8

    This work as single executable file. (Don't use external files) It can't use require(). But enough to learn coffeescript.

提交回复
热议问题