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.)

link|improve this question

71% accept rate
1  
In-browser JavaScript and JavaScript via node.js have their own way of doing asynchronous programming. You'll be much better off simply learning how that works and using it as intended instead of trying to force it into a different model (which is likely to be completely impossible anyway). – Pointy Oct 9 '11 at 14:13
2  
@Pointy: C# 5's awaits are a syntactic wrapper around the same callback model. They're much easier to use than callbacks, in any language. – SLaks Oct 9 '11 at 14:14
OK I of course defer to your broader experience :-) – Pointy Oct 9 '11 at 14:54
feedback

2 Answers

up vote 3 down vote accepted

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

fs.readFile 'foo.txt', (err, data) ->
  myFunc data

you could instead just write something like

data = &fs.readFile 'foo.txt'  # not a real syntax
myFunc data

This isn't something that JavaScript or CoffeeScript provides. However, there are several other compilers that can do something like this:

  • TameJS - JavaScript-based, mainly just adds this feature
  • Kaffeine - JavaScript-based, adds a bunch of features
  • coco - CoffeeScript-based

See also: List of languages that compile to JavaScript on the CoffeeScript wiki.

link|improve this answer
+1 Thx, how to do this in coco? – TN. Oct 9 '11 at 14:24
1  
Look for "backcall" on the Coco wiki. It uses a <- operator. – Trevor Burnham Oct 9 '11 at 14:52
1  
May I mention that adding such a syntax to javascript has a whole set of negatives, like having to trust the compiled code, having to understand the compiled code, having to debug the compiled code and being tempted to abuse synchronous design patterns in an asynchronous environment. basically they are abstractions that will easily leak unless you know exactly what your doing and I belief only the module author and a small number of people know exactly what they are doing – Raynos Oct 9 '11 at 20:22
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:

A library to compose asynchronous and event-based programs using observable collections and LINQ-style query operators.

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:

npm install rx

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.

link|improve this answer
Does Rx for JavaScript provide the async/await feature? – TN. Oct 9 '11 at 14:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.