首页 > 其他 > 详细

node 循序渐进

时间:2018-11-02 16:28:05      阅读:128      评论:0      收藏:0      [点我收藏+]

执行   

node helloworld.js

http  服务器 

建 server.js 文件 -  node server.js  跑起来 -  浏览器访问  http://localhost:8888/  (服务器控制台观看访问次数)

技术分享图片
var http = require("http");
var count=(function(){
  var num=0;
  return function(){
    num++;
    return num;
  }
}());
http.createServer(function (request, response) {
  response.writeHead(200, {
    "Content-Type": "text/plain"
  });
  response.write("Hello World");
  response.end();
  console.log(‘server‘+count());
}).listen(8888);
View Code

http  服务器   模块化方式实现

建主文件 入口  index.js   -   写模块化功能并导出对应接口 server.js  -   运行 node index  -  访问 http://localhost:8888/ 

index.js

var start=require(‘./server‘);
start.start();
server.js
技术分享图片
function handle(request, response) {
  response.writeHead(200, {
    "Content-Type": "text/plain"
  });
  response.write("Hello World");
  response.end();
  console.log(‘server‘ + count());
}

var count = (function () {
  var num = 0;
  return function () {
    num++;
    return num;
  }
}());

var http = require("http");

function start(){
  http.createServer(handle).listen(8888);
  console.log("Server working.");
}

exports.start = start;
View Code

 

 
 
 
 
 
 
 
 


node 循序渐进

原文:https://www.cnblogs.com/justSmile2/p/9896848.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!