[nodejs] repl with async ops

2012-09-19 Thread Dan Milon
Hello, I am trying to create a repl, that will mostly call async ops. How can i pause it until the async operation is over? Something like the mongo repl. Thanks, danmilon. -- Job Board: http://jobs.nodejs.org/ Posting guidelines:

Re: [nodejs] repl with async ops

2012-09-19 Thread Michael Schoonmaker
Dan, What are your goals in pausing the REPL? Especially when working with the REPL on a running application, I find invoking async operations with a callback like this one https://npmjs.org/package/repl-callback to be a lot more useful. Not saying you have to use that module or that your