A writable stream that writes to the console
Refactored out of tape
var ConsoleStream = require("console-stream")
var stream = ConsoleStream()
stream.write("one")
stream.write("two\n")
// console.log('onetwo')
stream.write("three\nfour")
// console.log('three')
stream.end("five")
// console.log('fourfive')
npm install console-stream
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.