Created
March 10, 2015 01:45
-
-
Save matbee-eth/c3d3c905a79b122f595b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
</head> | |
<body> | |
<script> | |
require('nw.gui').Window.get().evalNWBin(null, 'test.bin'); | |
</script> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "Test", | |
"description": "Test.", | |
"version": "0.1", | |
"main": "index.html", | |
"window": { | |
"toolbar": true, | |
"width": 660, | |
"height": 500 | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function test() { | |
console.log('test'); | |
} | |
// Compile with nwjc test.js test.bin |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment