Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Minimal Web Servers

Various solution for similar problems

  • Mongoose (C library)

  • python -m http.server 8080

  • while true; do nc -l 127.0.0.1 8889 < foo.html; done

  • nc -l 127.0.0.1 8889 < foo.html

  • while true ; do nc -l -p 1500 -c 'echo -e "HTTP/1.1 200 OK\n\n $(date)"'; done

  • while true ; do nc -l -p 1500 -e /path/to/yourprogram ; done