http-server 简介
http-server
is a simple, zero-configuration command-line http server. It is powerful enough for production usage, but it's simple and hackable enough to be used for testing, local development, and learning.
安装方法
1)使用Deepin/Ubuntu,或其它Debian Like发行版,在终端输入sudo apt install npm
安装npm包管理器
2)安装完npm后,输入sudo npm install http-server -g
,参数-g
表示全局安装,这样它就可以从终端运行,否则在终端输入http-server
将提示找不到此命令。
测试
1)在终端cd
到一个存有资源的文件夹,输入http-server
,将提示可访问的ip和端口,这个是可以修改的,详见本文第一个参考或http-server --help
。
2)打开浏览器看看是否能访问指定的URL下的资源,如图
成功访问资源
网友评论