HTTPServer-简易HTTP服务器

HTTP Server 简易HTTP服务器

Python

Python 3:

1
python3 -m http.server

Python 2:

1
python -m SimpleHTTPServer

Node.js

1
2
npm install http-server -g
hs

Upload a File Using curl

1
curl -F "file=@/path/to/your/file" http://localhost:8000/upload
文章目录
  1. 1. HTTP Server 简易HTTP服务器
    1. 1.1. Python
    2. 1.2. Node.js
    3. 1.3. Upload a File Using curl