适用于Mac的轻量级Localhost文件服务器

时间:2012-09-24 19:44:02

标签: macos terminal fileserver

我可以在mac上使用超轻量级文件服务器进行开发吗?

我想象的是:

> cd somefolder
> run server
  ...running static file server at http://0.0.0.0:2343...

仅用于开发静态html / css / js / images - 无需外部连接。

1 个答案:

答案 0 :(得分:57)

当然!它已经安装好了。

试试这个:

cd path/to/files
python -mSimpleHTTPServer

如果要在特定端口而不是8000(默认值)上运行它,只需将端口号作为第二个参数附加,如:

python -mSimpleHTTPServer 2343