Simple HTTP Server on OSX

发布在 Mac   100 words, about 1 min read

很多项目在开发前期或者仅有 HTML/CSS/JS 文件,本地想要预览效果而不希望本地启动 Apache 或者 Nginx 难免有些麻烦,Mac OSX 其实内置Python,通过下面两条命令就可以快速启动一个简单 HTTP 服务。

1
2
$cd path/project/folder
$python -m SimpleHTTPServer 8080

Tada, thus you have got a HTTP server which port is 8080.

1
control + c // stop it

评论和共享

  • 第 1 页 共 1 页
作者的图片

Bean Lee

author.bio


author.job


Beijing