码迷,mamicode.com
首页 > 其他好文 > 详细

node 循序渐进

时间:2018-11-02 16:37:21      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:浏览器   index   art   localhost   exports   功能   work   response   and   

执行   

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 循序渐进

标签:浏览器   index   art   localhost   exports   功能   work   response   and   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!