http-server: a command-line http server
Posted lightsong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了http-server: a command-line http server相关的知识,希望对你有一定的参考价值。
http-server
https://github.com/http-party/http-server#readme
http-server
is a simple, zero-configuration command-line http server.It is powerful enough for production usage, but it‘s simple and hackable enough to be used for testing, local development, and learning.
一款好用的nodejs平台的http服务器,功能简单,但是无需配置。
与成熟的express相比, 其没有常用的路由和中间件功能。
但是其确实好用 ,被广泛应用于 测试 、 本地开发 、 学习。
安装
Installing globally:
Installation via
npm
:npm install http-server -g
This will install
http-server
globally so that it may be run from the command line.
Usage:
http-server [path] [options]
[path]
defaults to./public
if the folder exists, and./
otherwise.Now you can visit http://localhost:8080 to view your server
以上是关于http-server: a command-line http server的主要内容,如果未能解决你的问题,请参考以下文章
实现一个类似 http-server 的静态服务 一一 ks-server