Amazing Javascript continuations library
Tuesday, May 30th, 2006Ever wished you could do this in Javascript?
alert(”Hello!”);
sleep(30);
alert(”Done!”);
Now you can. Narrative Javascript takes your Javascript and transforms it into a gigantic switch{} statement, saving and restoring the program state as it goes so that it appears to be one function call to your program. Pretty smart.