index.html 562 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
<!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>