nodejs的helloworld
程序员文章站
2022-03-04 20:43:04
...
http://www.nodebeginner.org/index-zh-cn.html
这个不错
在windows下就可以运行
http://nodejs.org/
目前稳定版0.6.13
建个helloworld.js
node helloworld.js运行
如果跑http请求
node helloworld.js
后,在http://localhost:8888/
可以看到效果
这个不错
在windows下就可以运行
http://nodejs.org/
目前稳定版0.6.13
建个helloworld.js
console.log("Hello World");
node helloworld.js运行
如果跑http请求
console.log("Hello World");
var http = require("http");
http.createServer(function(request, response) {
response.writeHead(200, {"Content-Type": "text/plain"});
response.write("Hello World");
response.end();
}).listen(8888);
node helloworld.js
后,在http://localhost:8888/
可以看到效果
console.log("Hello World");
//-------------
var http = require("http");
http.createServer(function(request, response) {
response.writeHead(200, {"Content-Type": "text/plain"});
response.write("Hello World");
response.end();
}).listen(8888);
//-------------
function say(word) {
console.log(word);
}
function execute(someFunction, value) {
someFunction(value);
}
execute(say, "Hello");
//---------
function execute(someFunction, value) {
someFunction(value);
}
execute(function(word){ console.log(word) }, "Hello");
//var http = require("http");
//
//function onRequest(request, response) {
// response.writeHead(200, {"Content-Type": "text/plain"});
// response.write("Hello World");
// response.end();
//}
//
//http.createServer(onRequest).listen(8888);
推荐阅读
-
JavaEE基础day02 1.定义Java中的变量 四类八种 2.变量定义和使用的注意事项 3.数据类型的转换、强制数据类型转换4.算数运算符、比较运算符、逻辑运算符、赋值运算符、三元运算符
-
Java学习(五)——Java中的运算符
-
Shell中去除字符串里的空格或指定字符的方法
-
python try except 捕获所有异常的实例
-
Java入门五 常用的运算符
-
opencv提取旋转矩形区域的图像(将旋转矩形区域图像旋转成水平)
-
05. 数组的基本运算
-
webpack3、4的基本的使用方法
-
Qt4.7中 默认的构造函数
-
win10系统设备管理器没有端口怎么办 win10设备管理器没有端口的多种原因及解决方法