我有node-webkit应用程序,其中包含以下条目:
<!-- index.html -->
<!doctype html>
<html>
<head>
<script>
function bodyOnLoad(){
window.location.assign('http://localhost:3000/');
}
</script>
</head>
<body onload="bodyOnLoad()">
<h1>Loading...</h1>
</body>
</html>
我的nodejs在localhost上侦听3000端口并具有以下结构:
// start.js
var app = express();
app.get('/', function(req, res) {
res.send(ok);
});
http.createServer(app).listen(3000, function(err){
if (err) throw err;
});
我已创建运行/调试配置并尝试运行onses。运行配置启动良好,但Debug一会抛出以下错误,并且不启动node-webkit应用程序:
[3736:1128/105652:FATAL:render_process_host_impl.cc(479)] Check failed: !g_exited_main_message_loop.
Process finished with exit code -2147483645
我的package.json文件:
{
"name": "nw",
"version": "0.0.0",
"description": "",
"main": "index.html",
"node-main": "start.js",
}
请帮我解决我的问题。