Skip to content

Instantly share code, notes, and snippets.

@MRWS
MRWS / repl.js
Last active December 5, 2018 15:25 — forked from blackwright/repl.js
Sequelize REPL
// Require the REPL module
// and models
const repl = require('repl').start({})
const models = require('./models')
// Make the `models` object
// a global variable in the
// REPL
repl.context.models = models