index.html 562 Bytes
<!DOCTYPE html>
<html>

<head>
    <meta charset="UTF-8">
    <title>สวสัสดีชาวโลก!</title>
</head>

<body>
    <h1>สวสัสดีชาวโลก!</h1>
    เราใช้ node เวอร์ชัน
    <script>
        document.write(process.versions.node)
    </script>, Chrome เวอร์ชัน 
    <script>
        document.write(process.versions.chrome)
    </script>, และ Electron เวอร์ชัน
    <script>
        document.write(process.versions.electron)
    </script>.
</body>

</html>