We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77abe0d commit 1e287bdCopy full SHA for 1e287bd
index.html
@@ -11,4 +11,9 @@ <h1>Hello World!</h1>
11
Chromium <script>document.write(process.versions.chrome)</script>,
12
and Electron <script>document.write(process.versions.electron)</script>.
13
</body>
14
+
15
+ <script>
16
+ // You can also require other files to run in this process
17
+ require('renderer.js')
18
+ </script>
19
</html>
renderer.js
@@ -0,0 +1,2 @@
1
+// This file is required by the index.html file and will
2
+// be executed in the renderer process for that window.
0 commit comments