如何在 ubuntu 12.04 中 运行 节点 webkit 应用程序?(节点 js)
How to run node webkit app in ubuntu 12.04?(Node js)
我是 nodewebkit 新手。我创建了简单的 hello world 应用程序。
index.html
<html>
<head>
<title>Webkit</title>
</head>
<body>
Hello world
</body>
</html>
package.json
{
"name": "sample",
"version": "1.0.0",
"description": "",
"main": "index.html",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"window": {
"title": "Hello world",
"toolbar": false,
"position": "center",
"width": 800,
"height": 650,
"min_width": 800,
"min_height": 650,
"frame": true,
"show": false
},
"author": "",
"license": "ISC"
}
然后我使用 .nw 扩展名压缩 (sample.nw)
毕竟我已经通过 nodewebkit
命令执行但是我得到以下错误
24012:0526/113323:ERROR:browser_main_loop.cc(162)] Running without the SUID sandbox! See https://code.google.com/p/chromium/wiki/LinuxSUIDSandboxDevelopment for more information on developing with the sandbox on.
LaunchProcess: failed to execvp:
/usr/lib/node_modules/nodewebkit/nodewebkit/nw
LaunchProcess: failed to execvp:
/proc/self/exe
[24012:0526/113324:ERROR:child_process_launcher.cc(344)] Failed to launch child process
[24012:0526/113324:ERROR:channel.cc(316)] RawChannel read error (connection broken)
有人可以帮助 运行 申请吗?谢谢
我认为你没有正确安装nodewebkit
请根据os从https://github.com/nwjs/nw.js最新版本安装,并在安装位置替换nodewebkit工具
我是 nodewebkit 新手。我创建了简单的 hello world 应用程序。
index.html
<html>
<head>
<title>Webkit</title>
</head>
<body>
Hello world
</body>
</html>
package.json
{
"name": "sample",
"version": "1.0.0",
"description": "",
"main": "index.html",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"window": {
"title": "Hello world",
"toolbar": false,
"position": "center",
"width": 800,
"height": 650,
"min_width": 800,
"min_height": 650,
"frame": true,
"show": false
},
"author": "",
"license": "ISC"
}
然后我使用 .nw 扩展名压缩 (sample.nw)
毕竟我已经通过 nodewebkit
命令执行但是我得到以下错误
24012:0526/113323:ERROR:browser_main_loop.cc(162)] Running without the SUID sandbox! See https://code.google.com/p/chromium/wiki/LinuxSUIDSandboxDevelopment for more information on developing with the sandbox on.
LaunchProcess: failed to execvp:
/usr/lib/node_modules/nodewebkit/nodewebkit/nw
LaunchProcess: failed to execvp:
/proc/self/exe
[24012:0526/113324:ERROR:child_process_launcher.cc(344)] Failed to launch child process
[24012:0526/113324:ERROR:channel.cc(316)] RawChannel read error (connection broken)
有人可以帮助 运行 申请吗?谢谢
我认为你没有正确安装nodewebkit
请根据os从https://github.com/nwjs/nw.js最新版本安装,并在安装位置替换nodewebkit工具