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

nodeJs(一)--- web服务器创建

时间:2017-11-09 14:25:47      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:http   切换   creat   服务器   image   span   logs   target   文件   

一、下载nodeJs

http://nodejs.cn/download/

根据自己的情况选择下载

然后在命令行中输入 node -v 看是否安装成功

技术分享

二、server,js

在文件夹下创建一个server.js

var http = require(‘http‘)

http.createServer(function(req,res){
    res.writeHead(200,{‘Content-type‘:‘text/plain‘})
    res.end(‘Hello World\n‘)
}).listen(1337,‘127.0.0.1‘)

console.log(‘Server running at http://127.0.0.1:1337‘)

启动服务器,切换到server.js的文件夹目录下

技术分享

然后在浏览器上访问

技术分享

 

nodeJs(一)--- web服务器创建

标签:http   切换   creat   服务器   image   span   logs   target   文件   

原文地址:http://www.cnblogs.com/yulingjia/p/7808445.html

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