当我尝试使用Node-webkit运行一个桌面应用程序时,我收到以下消息。
xml
实际上我已经下载了node-webkit并在解压缩后放在c驱动器(Cannot extract package
Failed to unzip the package file: C:\Documents
)里面。我在另一个位置创建了两个文件ie-index.html和package.json(i.e-C:\node-webkit-v0.11.5-win-ia32
) 。当我在cmd中运行命令(i.e-C:\Documents and Settings\Subhrajyoti\Desktop\htdocs\desktop1
)时,它给了我上面的消息。我有以下文件要运行。
的index.html:
i.e.C:\node-webkit-v0.11.5-win-ia32\nw C:\Documents and Settings\Subhrajyoti\Desktop\htdocs\desktop1
的package.json:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Node Webkit</title>
</head>
<body>
<h1>Node-webkit!</h1>
</body>
</html>
请帮我成功运行此应用。