Skip to content

Instantly share code, notes, and snippets.

@dikyarga
Created November 19, 2016 19:32
Show Gist options
  • Save dikyarga/97bfb1912cc0e74c9f4f82ea5df187f2 to your computer and use it in GitHub Desktop.
Save dikyarga/97bfb1912cc0e74c9f4f82ea5df187f2 to your computer and use it in GitHub Desktop.
Original file index.html Atom Quick Start
<!DOCTYPE html>
<html>
<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('./renderer.js')
</script>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment