web服务器 文件服务器_从任何文件夹运行Web服务器

许嘉珍
2023-12-01

web服务器 文件服务器

A common need you can have is to spin up a Web Server from a particular folder in your system.

您可能最需要的是从系统中的特定文件夹启动Web服务器。

You have absolutely no time to configure a proper web server like Apache or Nginx because this is just for a few minutes or for testing your app.

您绝对没有时间配置适当的Web服务器(例如Apache或Nginx),因为这只需要几分钟时间或用于测试您的应用程序。

How do you do so?

你如何做?

Depending on the language you prefer, you might already have all you need.

根据您喜欢的语言,您可能已经拥有了所需的一切。

If you use Node.js and you have installed npm already, run

如果您使用Node.js并且已经安装了npm ,请运行

npm install -g http-server

and then run http-server in the folder you want to expose through your server.

然后在要通过服务器公开的文件夹中运行http-server server。

By default it will start the server on port 8080, but you can change it using the -p flag (see more options by running http-server --help).

默认情况下,它将在端口8080上启动服务器,但是您可以使用-p标志对其进行更改(通过运行http-server --help查看更多选项)。

If you use Python and have it installed, just run

如果您使用Python并安装了它,则只需运行

python -m SimpleHTTPServer 8080

(Python 2)

(Python 2)

or

要么

python -m http.server 8080

(Python 3)

(Python 3)

to start a local server on port 8080.

在端口8080上启动本地服务器。

If you use PHP and you run a modern version of it, run

如果您使用PHP并运行它的现代版本,请运行

php -S localhost:8080

翻译自: https://flaviocopes.com/local-web-server/

web服务器 文件服务器

 类似资料: