29 lines
646 B
HTML
29 lines
646 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8" />
|
||
|
<title>Hello World!</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Hello World!</h1>
|
||
|
<!-- All of the Node.js APIs are available in this renderer process. -->
|
||
|
We are using Node.js
|
||
|
<script>
|
||
|
document.write(process.versions.node);
|
||
|
</script>
|
||
|
, Chromium
|
||
|
<script>
|
||
|
document.write(process.versions.chrome);
|
||
|
</script>
|
||
|
, and Electron
|
||
|
<script>
|
||
|
document.write(process.versions.electron);
|
||
|
</script>
|
||
|
</body>
|
||
|
|
||
|
<script>
|
||
|
// You can also require other files to run in this process
|
||
|
require('./dist/renderer.js');
|
||
|
</script>
|
||
|
</html>
|