mirror of https://github.com/embarklabs/embark.git
nodashboard start a repl
This commit is contained in:
parent
da1691327a
commit
3e328801db
|
@ -23,8 +23,13 @@ function registerVar(varName, code) {
|
||||||
__mainContext[varName] = code;
|
__mainContext[varName] = code;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function getContext() {
|
||||||
|
return __mainContext;
|
||||||
|
}
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
doEval: doEval,
|
doEval: doEval,
|
||||||
registerVar: registerVar,
|
registerVar: registerVar,
|
||||||
initContext: initContext
|
initContext: initContext,
|
||||||
|
getContext: getContext
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
const repl = require("repl");
|
const repl = require("repl");
|
||||||
|
const RunCode = require('../coderunner/runCode');
|
||||||
|
|
||||||
class REPL {
|
class REPL {
|
||||||
constructor(options) {
|
constructor(options) {
|
||||||
|
@ -6,16 +7,21 @@ class REPL {
|
||||||
}
|
}
|
||||||
|
|
||||||
start(done) {
|
start(done) {
|
||||||
let replServer = repl.start({
|
this.replServer = repl.start({
|
||||||
prompt: "Embark (" + this.env + ") > "
|
prompt: "Embark (" + this.env + ") > "
|
||||||
});
|
});
|
||||||
|
this.initializeContext(this.replServer.context);
|
||||||
|
|
||||||
replServer.on('exit', () => {
|
this.replServer.on("exit", () => {
|
||||||
process.exit();
|
process.exit();
|
||||||
});
|
});
|
||||||
|
|
||||||
done();
|
done();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
initializeContext(context) {
|
||||||
|
context.embark = RunCode.getContext();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = REPL;
|
module.exports = REPL;
|
||||||
|
|
|
@ -155,7 +155,14 @@ class Embark {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
engine.startService("fileWatcher");
|
engine.startService("fileWatcher");
|
||||||
callback();
|
|
||||||
|
if (!options.useDashboard) {
|
||||||
|
const REPL = require('./dashboard/repl.js');
|
||||||
|
let repl = new REPL({env: engine.env});
|
||||||
|
repl.start(function () {
|
||||||
|
callback();
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
], function (err, _result) {
|
], function (err, _result) {
|
||||||
if (err) {
|
if (err) {
|
||||||
|
|
Loading…
Reference in New Issue