summaryrefslogtreecommitdiff
path: root/mongo-edu.js
diff options
context:
space:
mode:
Diffstat (limited to 'mongo-edu.js')
-rw-r--r--mongo-edu.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/mongo-edu.js b/mongo-edu.js
index 0419da0..9e98b1b 100644
--- a/mongo-edu.js
+++ b/mongo-edu.js
@@ -18,13 +18,17 @@ var pkg = require('./package'),
path = require('path'),
colors = require('colors');
+var appTitle = '[ ' + pkg.name.toUpperCase() + ' ' + pkg.version + ' ]';
+
process.title = pkg.name;
exports.create = function start() {
'use strict';
- console.log('\n[ ' + pkg.name.toUpperCase() + ' ' + pkg.version + ' ]\n');
+ console.log('\n');
+ console.log(' ' + appTitle.black.bold.bgWhite);
+ console.log('\n');
var argv = yargs.argv, slash = (/^win/.test(process.platform)) ? '\\' : '/';