Created
November 28, 2015 02:38
-
-
Save dd1994/e2603c9344d54a49c12a to your computer and use it in GitHub Desktop.
node repl example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict' | |
const repl = require('repl') | |
let r = repl.start("-> ") | |
let c = r.context | |
c.msg = "awesome repl" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment