欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

《node学习--第二篇》使用nodejs创建一个简单的服务器

程序员文章站 2024-03-20 16:39:46
...

所有源码我放在github上面https://github.com/samdidemo/nodejs,欢迎star

1.新建一个server.js

2.引进http模块,nodejs里面有很多模块,但我们需要模块时,只需引进相应的模块就行

3.监听端口

代码如下

//引入http模块
const http=require('http');
//创建服务器
var server=http.createServer(function(req,res){
  consol.log("someone coming");
  console.log(req.url);
  res.end();
})
//监听8080端口
server.listen(8080)

 注意,必须监听端口

cd到对应的目录下,执行命令node server.js,然后在浏览器中访问http://localhost:8080,可以看到服务器已经接收到请求,输出someone coming

《node学习--第二篇》使用nodejs创建一个简单的服务器

但是浏览器没有反应,因为我们并没有对浏览器返回内容

我们加多一行res.write()向浏览器输出,代码如下,重新运行server.js

//引入http模块
const http=require('http');
//创建服务器
var server=http.createServer(function(req,res){
  consol.log("someone coming");
  res.write("weclome");
  res.end();
  console.log(req.url);
})
//监听8080端口
server.listen(8080)

可以看到浏览器输出了welcome

《node学习--第二篇》使用nodejs创建一个简单的服务器

下一篇讲解如何使用fs模块读取,写入文件https://blog.csdn.net/abc_123456___/article/details/99703487