Skip to content

Instantly share code, notes, and snippets.

@coderguy
Created November 6, 2014 20:28
Show Gist options
  • Save coderguy/4d1184e4c122a71ca040 to your computer and use it in GitHub Desktop.
Save coderguy/4d1184e4c122a71ca040 to your computer and use it in GitHub Desktop.
Repl with Node.js
"use strict";
var repl = require("repl");
var config = require('./config/');
var models = require('./app/models');
var replServer = repl.start({
prompt: "cio (" + config.get('env') + ") > "
});
replServer.context.models = models;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment