rocket-cli
Version:
Pure command line tool to replace Baidu('百毒') NetDisk or other NetDisk with this COOL shit!
15 lines (13 loc) • 373 B
JavaScript
var homeDir = process.env[(process.platform == 'win32') ? 'USERPROFILE' : 'HOME'];
var CONFIG_FILE = '/.rocket.json';
var colors = require('colors');
module.exports = {
LOCAL_DB: homeDir + CONFIG_FILE,
logSuccess: function (string) {
console.log(colors.green(string));
},
logError: function (string) {
console.log(colors.red(string));
}
};
;