本地搭建 web 服务器
# 本地搭建 web 服务器
# 前端 npm 包
1.npm 安装 anywhere 包
npm install anywhere -g
找到要启动本地服务器的静态文件夹,执行命令:anywhere
2.npm 安装 http-server 包
npm install http-server -g
找到你的文件夹,在当前文件夹下打开命令行,输入 http-server,默认启动 8080 端口,
3.使用 Simple HTTP Server
npm install -g simple-http-server
nserver
# 编程语言
- node 搭建本地 web 服务器
简易静态服务 https://www.w3cways.com/2131.html (opens new window) 简单 web 服务器
//引入http模块
var http = require("http");
//设置主机名
var hostName = '127.0.0.1';
//设置端口
var port = 8080;
//创建服务
var server = http.createServer(function(req,res){
res.setHeader('Content-Type','text/plain');
res.end("hello nodejs");
});
server.listen(port,hostName,function(){
console.log(`服务器运行在http://${hostName}:${port}`);
});
1
2
3
4
5
6
7
8
9
10
11
12
13
14
2
3
4
5
6
7
8
9
10
11
12
13
14
- python 搭建本地 web 服务器
https://blog.csdn.net/qq_34215281/article/details/77714586
python2python -m SimpleHTTPServer 8000
python3python -m http.server 8000
- php
php -S localhost:8000
# 服务器
nginx、IIS、apache、tomcat
# 集成安装包
xampp -- linux wamp phpStudy
更新时间: 12/21/2021, 3:54:38 PM