当前位置 : 主页 > 网络编程 > 其它编程 >

NodeJS最快速搭建一个HttpServeranywhere

来源:互联网 收集:自由互联 发布时间:2023-07-02
anywhere会自动打开index.htmlnpminstallanywhere-gcd想要以某个路径作为静态文件服务器的根目录分享只需要在该目录下执行只需要在该目录下执行 anywhere 默认不添加 -s 命令会在命令敲击后同时
anywhere会自动打开index.htmlnpminstallanywhere-gcd想要以某个路径作为静态文件服务器的根目录分享只需要在该目录下执行只需要在该目录下执行

anywhere

默认不添加 -s 命令会在命令敲击后同时打开浏览器访问 http://ipv4地址:8000/ 这个路径。

anywhere -p 8000 // 指定静态服务器的端口号 anywhere -s // 静默执行不打开浏览器

https://www.cnblogs.com/mrblue/p/6149849.html

NodeJS 最快速搭建一个HttpServer

node.js最快速搭建一个HttpServer

 

先下载 http-server

npm install http-server -g

 

在目录里放一个index.html

1

2

cd D:\Web\InternalWeb

start http-server -i -p 8081 -a 127.0.0.1

上一篇:can总线基础(一)
下一篇:没有了
网友评论