nodejs的helloworld

编程技术  /  houtizong 发布于 3年前   96
http://www.nodebeginner.org/index-zh-cn.html
这个不错
在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);
上一篇:linux异步IO浅析
下一篇:epoll简化版本

请勿发布不友善或者负能量的内容。与人为善,比聪明更重要!

留言需要登陆哦

技术博客集 - 网站简介:
前后端技术:
后端基于Hyperf2.1框架开发,前端使用Bootstrap可视化布局系统生成

网站主要作用:
1.编程技术分享及讨论交流,内置聊天系统;
2.测试交流框架问题,比如:Hyperf、Laravel、TP、beego;
3.本站数据是基于大数据采集等爬虫技术为基础助力分享知识,如有侵权请发邮件到站长邮箱,站长会尽快处理;
4.站长邮箱:[email protected];

      订阅博客周刊 去订阅

文章归档

文章标签

友情链接

Auther ·HouTiZong
侯体宗的博客
© 2020 zongscan.com
版权所有ICP证 : 粤ICP备20027696号
PHP交流群 也可以扫右边的二维码
侯体宗的博客