专题十二、如何搭建本地服务器

方法一、快速简单的静态服务器:安装anywhere
首先必须是在node环境下的
1、运行npm install anywhere -g(安装了anywhere)
2、在将要运行的文件夹中运行 anywhere 8860(端口号)命令
教程链接

方法二、node-static(静态服务器)
1、运行npm install -g node-static (安装静态服务)
2、在将要运行的文件夹中运行 static(端口号)命令
PS:我的Windows系统运行static提示“command not found”

方法三、

你可能感兴趣的:(专题十二、如何搭建本地服务器)