加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
hosts.js 1.41 KB
一键复制 编辑 原始数据 按行查看 历史
云香水识 提交于 2014-11-16 16:45 . --2014/11/16 v.1.2.10
"use strict";
var CONF = require("./nodeLib/config/conf"),
fs = require('fs'),
_ = require('underscore');
//hosts写入, windows only, 可能需要管理员权限
var hostsString = '127.0.0.1 ' + _.keys(CONF).join(' '),
hostsPath = 'C:\\Windows\\System32\\drivers\\etc\\hosts';
if( process.argv[2] === 'reset' ){
fs.rename( hostsPath + '.bak',hostsPath, function(err){
if(err){
console.log( err );
}else{
console.log( 'reset hosts successfully' );
}
});
}else{
fs.stat(hostsPath + '.bak',function(error, stat){
if( stat && stat.isFile && stat.isFile() ){
console.log( '\nhosts.bak is existed. run: ' );
console.warn( ' "node hosts reset"' );
}else{
var hostsBak = fs.readFileSync( hostsPath ).toString().replace(/[\n\r]?127\.0\.0\.1[\s\S]+/g,'');
fs.rename(hostsPath, hostsPath + '.bak', function(err){
if( err ){
console.log( err );
}else{
fs.writeFile(hostsPath, hostsBak + '\n' + hostsString, function(err){
if(err){
console.log(err);
}else{
console.log( ' hosts backup in hosts.bak and Instead of new local-hosts config' );
}
});
}
});
}
});
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化