codecamp

(1)helloworld

要求

编写一个程序,在终端(标准输出 stdout)打印出 “HELLO WORLD”。

提示

要编写一个 Node.js 程序,只需要创建一个后缀名为 .js 的文件,然后用 JavaScript去编写即可。完成后,可以通过命令行 node 命令来运行它,例如:

$ node program.js

和浏览器一样,可以在 Node.js 程序中书写 console:

console.log("HELLO WORLD")

此时在控制台上看到

HELLO WORLD

恭喜正式进入node.js世界~

node.js不仅仅为前端工程师转为全栈插上了翅膀,同时它还可以写桌面app,cs程序…总之它很强大,你值得学习~

(0)起因
(2)命令行参数
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }