码迷,mamicode.com
首页 > Web开发 > 详细

学习 node.js 搭建web服务器

时间:2017-07-09 14:55:41      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:http   host   port   nbsp   搭建web服务器   hostname   code   pre   服务   

开始 学习使用 node.js 首先完成搭建一个 web服务器。myweb.js

 1 var http = require(‘http‘);
 2 var url = require(‘url‘);
 3 var hostname = ‘127.0.0.1‘;
 4 var port = 3000;
 5 var bodystr = "";
 6 var server = http.createServer(function(req, res){
 7   res.statusCode = 200;
 8   res.setHeader(‘Content-Type‘, ‘text/plain‘);
 9   var pathname = url.parse(req.url).pathname;
10   if(pathname === "/"){
11         bodystr = "Hello World\n";
12   }else{
13         bodystr = req.url;
14   }
15   res.end(bodystr);
16 }).listen(port, hostname, function(){
17   console.log(`Server running at http://${hostname}:${port}/`);
18 });

使用 npm 执行 myweb.js
技术分享

浏览器输入 127.0.0.1:3000

技术分享

输入 127.0.0.1:3000/Double

技术分享

 

学习 node.js 搭建web服务器

标签:http   host   port   nbsp   搭建web服务器   hostname   code   pre   服务   

原文地址:http://www.cnblogs.com/double405/p/7141353.html

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