2015/10/17

8113791cebec956796e5a10562b64fa965754f7e

最初期のコミットで、ファイルは2つ。(Node.js ではなく io.js を使用)

  • index.html
  • main.js

index.html の script タグで io.js の process API をダイレクトに呼び出し。

<!DOCTYPE html>
<html>
  <head>
    <title>Hello World!</title>
  </head>
  <body>
    <h1>Hello World!</h1>
    We are using io.js <script>document.write(process.version)</script>
    and Electron <script>document.write(process.versions['electron'])</script>.
  </body>
</html>
<!DOCTYPE html>
<html>
  <head>
    <title>Hello World!</title>
  </head>
  <body>
    <h1>Hello World!</h1>
    We are using io.js <script>document.write(process.version)</script>
    and Electron <script>document.write(process.versions['electron'])</script>.
  </body>
</html>