On Apr 2, 2015, at 6:10 PM, Mark Edwards wrote: > > hello all - i just switched from node.js to io.js and ran into this problem. > i tried to run > > mkdir ./test; cd ./test; npm install sync-exec; > > and received back the following message (below) any suggestions?
A synchronous version of exec is included in node 0.12, and I imagine in iojs as well: https://nodejs.org/api/child_process.html#child_process_child_process_execsync_command_options So you should use that instead of sync-exec or exec-sync or any of a number of other prior implementations found in npm. -- Job board: http://jobs.nodejs.org/ New group rules: https://gist.github.com/othiym23/9886289#file-moderation-policy-md Old group rules: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines --- You received this message because you are subscribed to the Google Groups "nodejs" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/nodejs/AB6B5BA0-FA5F-4E7D-829E-ED56F02B6DDD%40ryandesign.com. For more options, visit https://groups.google.com/d/optout.
