summaryrefslogtreecommitdiff
path: root/assets/about.html
blob: eb635e13e3b00b4143dd6b57acc647cfe4e8730c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
  <html>
    <head>
      <meta charset="UTF-8">
      <title>About</title>
    </head>
    <body>
      <h1>Versions</h1>
      <table>
        <tr>
          <td>Node.js</td>
          <td><script>document.write(process.versions.node)</script></td>
        </tr>
        <tr>
          <td>Chrome</td>
          <td><script>document.write(process.versions.chrome)</script></td>
        </tr>
        <tr>
          <td>Electron</td>
          <td><script>document.write(process.versions.electron)</script></td>
        </tr>
      </table>
    </body>
  </html>