UNPKG

245 BJavaScriptView Raw
1let repl = require("repl")
2let app = require(`${process.cwd()}/app.js`)
3
4app.prepare()
5app.connectDependencies()
6 .then( () => {
7
8 repl.start({}).on('exit', () => {
9
10 return app.disconnectDependencies()
11
12 })
13
14 }).catch(console.log)