I started experimenting with nwjs ( node-webkit ) . But i seem to be doing something wrong i have 2 file in a folder : index.html
<!DOCTYPE html>
<html>
<head>
<title>Hello Node Webkit</title>
</head>
<body>
<h1>Hello Node Webkit</h1>
</body>
</html>
package.json
{
"name": "myapp.helloworldapp",
"version": "1.0.0",
"description": "A test app",
"main": "index.html",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "MIT"
}
i zip up both files at ones ( i don't zip the folder ) and i rename the extention from .zip to .nw but nothing happens when i try to open it with the nwjs app .
i'm working from a mac if that could have something to do with it ?