Node.js的helloworld 程序

Posted llguanli

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Node.js的helloworld 程序相关的知识,希望对你有一定的参考价值。

用文本编辑器。如npp,键入例如以下代码。存储成hello.js

console.log(‘hello‘)
console.log(‘hello %s->%d‘,‘jeapedu‘, 1941847311)

console.log(‘hello‘)
console.log(‘hello %s->%d‘,‘jeapedu‘, 1941847311)
node hello.js
C:\nodeS>node hello.js
hello
hello jeapedu->1941847311

cmd进入dos。切入hello.js所在文件夹,执行node.js程序

node hello.js

执行结果例如以下所看到的:

C:\nodeS>node hello.js
hello
hello jeapedu->1941847311







以上是关于Node.js的helloworld 程序的主要内容,如果未能解决你的问题,请参考以下文章

Node.js 在 Windows 7 中不运行 HelloWorld 程序

Node.js入门以及第一个helloworld程序

Node.js开发入门—HelloWorld再分析

Node.js JavaScript 片段中的跳过代码

Node.js配置And HelloWorld

如何在 Node.js 中集成 ajax?