DEV Community

Cover image for Run Simple Web Server On The Spot
hardyweb
hardyweb

Posted on

Run Simple Web Server On The Spot

PHP php -S localhost:8000

PHP (public)    php -S localhost:8000 -t public

Python  python3 -m http.server 8000

Node    npx serve -p 8000

BusyBox busybox httpd -f -p 8000

Ruby    ruby -run -e httpd . -p 8000

Enter fullscreen mode Exit fullscreen mode

Top comments (0)