Here are some things to try. I could help but do not have a 32-bit Windows installation at hand.
The file "package.json" contains some basic application settings.
This is the HTML file that is lauched when node-webkit starts:
You can change the following setting to "true" to get a toolbar and console log once node-webkit is running, this can be useful for debugging:
The JavaScript code for the Workbench is in the folder "hyper".
You can start out by making some modifications to file "hyper/ui/hyper-ui.html".
First thing, comment out all the script tags (using HTML comment tags), and test if the application starts:
Code: Select all
<!--
<script src="hyper-ui.js"></script>
<script>
....
</script>
-->
</body>
If that is successful, try to see if the file hyper-ui.js loads by moving the comment tag:
Code: Select all
<script src="hyper-ui.js"></script>
<!--
<script>
....
</script>
-->
</body>
If that works, remove the HTML comment tags and start commenting out code in the script tag using JavaScript comments /* ... */
This is a start, just to see if it is possible to get something to launch without node-webkit crashing.
Very best, Mikael