使用极简NodeJs代码实现一个http静态服务器 , 且可以访问并引用当前目录下的HTML/CSS/JS等静态资源

代码 :

const http = require('http');
const express = require('express');
const app = express();
const port = 8088;
app.use("/", express.static(__dirname + '/'));

// 创建服务端
http.createServer(app).listen(port, function () {
    console.log(`服务器启动成功,可以通过 http://localhost:${port}/ 来访问`)
});

使用方法 :

1、把该数据内容复制到一个JS文件中,如“app.js”;
2、把“app.js”文件放到需要作为服务器的目录下,文件发到“public”目录下;
3、运行命令“node app.js”,若没有安装express模块,运行命令“npm install express”进行安装;
4、打开浏览器,访问服务器:http://localhost:8088/index.html 即可

使用极简NodeJs代码实现一个http静态服务器


访问结果 :

使用极简NodeJs代码实现一个http静态服务器 , 且可以访问并引用当前目录下的HTML/CSS/JS等静态资源_第1张图片

使用极简NodeJs代码实现一个http静态服务器 , 且可以访问并引用当前目录下的HTML/CSS/JS等静态资源_第2张图片

你可能感兴趣的:(javascript,node.js)