Hi all, and thank you for node-webkit, truly awesome piece of software.
One thing that I have noticed in the Developer Tools, and that I never see a "304 Not Modified" on the "Network" tab.
This can be seen by using the following simple index.html
<html>
<head>
<script type="text/javascript" src="
http://ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js"></script>
</head>
<body>hello world</body>
</html>
jquery will load completely on every refresh, ie with a "200 OK"
opening this file in a regular browser will return "304 Not Modified" on subsequent refreshes.
I have set "page-cache": true, but this only seems to work in the "current session"
Maybe I am completely missing something?
Thanks