Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

Thanks. I'll look into it.

One thing I forgot to mention about async.js: It's downright disgusting when you try to use it with CoffeeScript, so even though it's a mature, well-architectured piece of framework, I don't like to use it with CoffeeScript...



As someone who was just about to add some async.js to a CoffeeScript/Node project, I'd be very interested to hear about what problems you've had before I go and potentially do something stupid.


It might be just me, but

      async.waterfall [ 
        (callback) -> 
          callback null, "one", "two" 
        (arg1, arg2, callback) -> 
          callback null, "three" 
        (arg1, callback) -> 
          callback null, "done" 
      ] 
just doesn't make much sense to me. I just don't like the way it looks.

(code snippet from https://groups.google.com/group/coffeescript/browse_thread/t... )


Looks fine to me, but I do agree Iced can look even better.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: