简单搭建node.js服务器

一名正在研究nodejs的新手。希望与各位大佬一起交流。
如果写的有什么问题请多多包含并指出。

文档

node.js 下载地址及原文文档 https://nodejs.org/en/
node.js 中文文档地址 http://nodejs.cn/

引用http模块

  • 首先我们先引入一个node.js的http核心模块。
//引用http模块
const http = require("http");

创建一个服务器对象

  • 接着 我们创建一个服务器对象
//创建一个服务器对象
const server = http.createServer();

接收浏览器请求过来请求

  • 给服务器对象注册一个request事件,当浏览器有请求发送过来时,服务器会接收,并且执行后面的回调函数,让response给我们在浏览器上响应一个“helloword”
server.on('request', function(request, response){
    response.end('hellow word');
});
  • 不要急我们接下来开始开启服务监听。

设置ip地址和端口号

  • 填写端口号,ip,端口号
server.listen(3000, "127.0.0.1", function(){
    console.log('running');
});

用powershell启动

  • 在所在文件目录,按住shift右击找到powershell

  • 或者没有powershell键就在所在目录启动cmd后输入powershell!


    powershell.png
  • 输入 node ./文件名 回车 显示running


    running.png
  • 打开浏览器输入输入127.0.0.1:3000端口,ok。


    helloword.png

最后

ctrl+c 退出

你可能感兴趣的:(简单搭建node.js服务器)