forked from balderdashy/sails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsails-console.js
112 lines (89 loc) · 2.35 KB
/
sails-console.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
#!/usr/bin/env node
/**
* Module dependencies
*/
var nodepath = require('path');
var REPL = require('repl');
var fs = require('fs');
var _ = require('lodash');
require('colors');
var CaptainsLog = require('captains-log');
var Sails = require('../lib/app');
var rconf = require('../lib/app/configuration/rc');
var Err = require('../errors');
/**
* `sails console`
*
* Enter the interactive console (aka REPL) for the app
* in our working directory.
*/
module.exports = function() {
var log = CaptainsLog(rconf.log);
console.log();
log.info('Starting app in interactive mode...'.debug);
console.log();
// Now load up sails for real
var sails = Sails();
sails.lift(_.merge({}, rconf, {
// Disable ASCII ship to keep from dirtying things up
log: {
noShip: true
}
}), function(err) {
if (err) return Err.fatal.failedToLoadSails(err);
log.info('Welcome to the Sails console.');
log.info(('( to exit, type ' + '<CTRL>+<C>' + ' )').grey);
console.log();
var repl = REPL.start('sails> ');
try {
history(repl, nodepath.join(sails.config.paths.tmp, '.node_history'));
} catch (e) {
log.verbose('Error finding console history:', e);
}
repl.on('exit', function(err) {
if (err) {
log.error(err);
process.exit(1);
}
process.exit(0);
});
});
};
/**
* REPL History
* Pulled directly from https://github.com/tmpvar/repl.history
* with the slight tweak of setting historyIndex to -1 so that
* it works as expected.
*/
function history(repl, file) {
try {
var stat = fs.statSync(file);
repl.rli.history = fs.readFileSync(file, 'utf-8').split('\n').reverse();
repl.rli.history.shift();
repl.rli.historyIndex = -1;
} catch (e) {}
var fd = fs.openSync(file, 'a'),
reval = repl.eval;
repl.rli.addListener('line', function(code) {
if (code && code !== '.history') {
fs.write(fd, code + '\n');
} else {
repl.rli.historyIndex++;
repl.rli.history.pop();
}
});
process.on('exit', function() {
fs.closeSync(fd);
});
repl.commands['.history'] = {
help: 'Show the history',
action: function() {
var out = [];
repl.rli.history.forEach(function(v, k) {
out.push(v);
});
repl.outputStream.write(out.reverse().join('\n') + '\n');
repl.displayPrompt();
}
};
}