Synchronous Exec in Node.js

Everyone loves NodeJS in part because it embraces a non-blocking philosophy;  interactions are asynchronous and thus, theoretically, allow for faster all-around processing.  When creating a simple script for my upcoming redesign, I found the asynchronocity … annoying.  I was quickly sinking into callback hell with the server executions I was running through Node.js.  Luckily I … Continue reading Synchronous Exec in Node.js