27 lines
644 B
HTML
27 lines
644 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>I love NW.js</title>
|
|
<style>
|
|
body {
|
|
color: #fff;
|
|
background-color: #000;
|
|
}
|
|
</style>
|
|
<script>
|
|
const uuidv4 = require('uuid').v4;
|
|
|
|
console.log('uuidv4:', uuidv4())
|
|
|
|
// Don't show the window until it's loaded so that we don't get a white flash
|
|
const gui = require('nw.gui');
|
|
onload = function() {
|
|
gui.Window.get().show();
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<h1>NW.js is great!</h1>
|
|
</body>
|
|
</html>
|