使用http-server开启一个本地服务器
描述:
在写简单的前端DOM时,经常会在浏览器运行HTML页面,从本地文件夹中直接打开的一般都是file
协议,当代码中存在http
或https
的链接时,
HTML页面就无法正常打开,为了解决这种情况,需要在在本地开启一个本地的服务器。
工具:node.js
中的 http-server
1.安装node
官网地址: https://nodejs.org
下载完成后在命令行输入命令$ node -v
以及$ npm -v
检查版本,确认是否安装成功。
2.安装http-server
$ npm install http-server -g
3.开启 http-server
服务
终端进入目标文件夹,然后在终端输入:
$ http-server -c-1
Starting up http-server, serving ./
Available on:
http://127.0.0.1:8080
Hit CTRL-C to stop the server
4.关闭 http-server
服务
按快捷键CTRL-C
终端显示^Chttp-server stopped.
即关闭服务成功。
参考:https://www.cnblogs.com/nolaaaaa/p/9126385.html