Merge pull request #3150 from atom/jl-upadate-qs

Update Quick Start HTML
This commit is contained in:
Cheng Zhao 2015-10-20 11:17:30 +08:00
commit 4005e65e28

View file

@ -130,8 +130,9 @@ Finally the `index.html` is the web page you want to show:
</head> </head>
<body> <body>
<h1>Hello World!</h1> <h1>Hello World!</h1>
We are using Node.js <script>document.write(process.version)</script> We are using node <script>document.write(process.versions.node)</script>,
and Electron <script>document.write(process.versions['electron'])</script>. Chrome <script>document.write(process.versions.chrome)</script>,
and Electron <script>document.write(process.versions.electron)</script>.
</body> </body>
</html> </html>
``` ```