first-electron/index.html

20 lines
584 B
HTML
Raw Normal View History

2015-10-17 08:04:57 +08:00
<!DOCTYPE html>
<html>
<head>
2015-11-24 10:32:52 +08:00
<meta charset="UTF-8">
2015-10-17 08:04:57 +08:00
<title>Hello World!</title>
</head>
<body>
<h1>Hello World!</h1>
2016-04-21 06:13:58 +08:00
<!-- All of the Node.js APIs are available in this renderer process. -->
2016-10-28 08:54:22 +08:00
We are using Node.js <script>document.write(process.versions.node)</script>,
2016-02-23 07:37:57 +08:00
Chromium <script>document.write(process.versions.chrome)</script>,
2015-10-20 06:22:06 +08:00
and Electron <script>document.write(process.versions.electron)</script>.
2017-09-19 17:04:12 +08:00
<script>
// You can also require other files to run in this process
require('./renderer.js')
</script>
</body>
2015-10-17 08:04:57 +08:00
</html>