I got anthe following error when using strict mode.
Node error: "Octal literals are not allowed in strict mode."
I found the answer here: https://github.com/SBoudrias/Inquirer.js/issues/111
Node error: "Octal literals are not allowed in strict mode."
process.stdout.writeThe following solution works ("received: " + bytesReceived + "\x1B[0G"source);:
process.stdout.write("received: " + bytesReceived + "\x1B[0G");