之前一直是使用 mobaxterm 的网络服务器工具,启动一个 http 服务器,
只需要选一下目录和端口就行了。
测试前端或者有时传文件很方便。
但是最近在测试前端时,发现使用 import ,总是提示
Failed to load module script: Expected a JavaScript module script but the server responded with a MIME type of "application/binary". Strict MIME type checking is enforced for module scripts per HTML spec.
想了解下有没有什么小工具可以替代他, nginx 的话,每次要找到配置目录里改,再命令行启动,比较麻烦
1
yandong1228 2023-06-21 13:58:55 +08:00
python -m httt.server
|
2
blankmiss 2023-06-21 14:10:50 +08:00
python caddy 都行
|
3
libook 2023-06-21 14:12:50 +08:00
一般 linux 发行版都会自带 python ,根据是 python2 还是 python3 可以参考我写的这个脚本来启动一个简单的 http 服务器
https://github.com/libook/IdleBox/blob/master/scripts/public/http-server |
4
iblessyou OP @yandong1228
@blankmiss @libook 呃,感谢回复,不过好像都没理解我意思。之前用 mobaxterm ,也就是在 windows 上使用的, 本机现在没 python 环境,专门弄个倒不如继续用 nginx 主要就是想找个小工具,能快速修改路径和启停。 |
5
Al0rid4l 2023-06-21 23:09:32 +08:00
|
6
iblessyou OP [![https://www.hualigs.cn/image/6497a8402e0ab.jpg]( https://www.hualigs.cn/image/6497a8402e0ab.jpg)]( https://www.hualigs.cn/image/6497a8402e0ab.jpg)
@Al0rid4l 好像你理解错了,我其实是要的类似这个这样,用来发布静态前端页面,而不是文件服务器的 |