Is there any attempt to bring async/await feature from C# 5.0 to any language which can be compiled to JavaScript (such as CoffeScript)? (So it can be used either in web browser or in node.js.)
feedback
|
|
I'm not familiar with C#, but it sounds like what you're looking for is some sort of continuations, so that instead of writing
you could instead just write something like
This isn't something that JavaScript or CoffeeScript provides. However, there are several other compilers that can do something like this:
See also: List of languages that compile to JavaScript on the CoffeeScript wiki. | |||||||||||||
feedback
|
|
If you are interested in .NET style asynchronous programming for JavaScript you should look into Rx for JavaScript. Rx for JavaScrpt is Microsoft's JavaScript port of the Reactive Framework. The reactive framework is described as:
You can download Rx for JavaScript here And you can read more about it, including examples here You can also install it on node with npm:
It works well with libraries like jQuery, however I am not a CoffeeScript programmer, so I'm not sure what support there is for interoperability with other JavaScript libraries in this language. | |||
|
feedback
|