10 回复
其实nide官网说的很清楚了 安装:
step 1:
npm install -g nide //能不能装上看人品
step 2:
cd to_your_project_path
setp 3:
nide init
能不能装上还真看人品
根据上面的步骤安装完后,开始修改文件假设nide是安装在:
C:\Documents and Settings\Administrator\Application Data\npm\node_modules\nide
打开nide
下的main.js
修改以下几行:
var checkForDependencies = function(callback) {
exec('which npm', function(err, stdout, stderr) {
if (err) {
console.error('Could not find `npm` command. Is npm installed?')
process.exit(-1)
} else {
callback()
}
})
}
改成:
var checkForDependencies = function(callback) {
callback()
}
打开 nide/server/server.js
注释掉一下几行:
server.listen(port, host, function() {
staticServer.listen(port+1, host, function() {
// if run as root, downgrade to the owner of this file
if (process.getuid() === 0) {
if(downgrade == true){
require('fs').stat(__filename, function(err, stats) {
if (err) return console.log(err)
process.setuid(stats.uid);
});
}
}
});
});
好了,可以运行 nide init
或者 nide
了 打开http://localhost:8123