for php
(빌트인)(웹 캐시 안한다)
php -S 127.0.0.1:81
php -S 0.0.0.0:8000
$ php -S 127.0.0.1:81
[Sat Feb 22 17:43:10 2025] PHP 7.4.33 Development Server (http://127.0.0.1:81) started
for node.js
(라이브러리 설치 필요)(웹캐시 한다)
npm install -g http-server
http-server -p 81
$ http-server
Starting up http-server, serving ./
http-server version: 14.1.1
http-server settings:
CORS: disabled
Cache: 3600 seconds
Connection Timeout: 120 seconds
Directory Listings: visible
AutoIndex: visible
Serve GZIP Files: false
Serve Brotli Files: false
Default File Extension: none
Available on:
http://192.168.0.3:8080
http://127.0.0.1:8080
Hit CTRL-C to stop the server
for python
(빌트인)(웹 캐시 안한다)
python -m http.server 8000
$ python -m http.server 8000
Serving HTTP on :: port 8000 (http://[::]:8000/) ...