Pomog / enamine-resume

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Netlify Status

Simple Web Server Setup

Create a Simple Web Server - Linux

Start a simple web server in the background

&>/dev/null python3 -m http.server &

Show process

pgrep -f "python3 -m http.server"

or

ps aux | grep "python3 -m http.server" | grep -v grep

Stop process

kill <ProcessID>

Create a Simple Web Server - Windows

Start a simple web server with a hidden window

Start-Process python -ArgumentList "-m http.server" -WindowStyle Hidden

Show process

Get-Process -Name python

Stop process by name

Stop-Process -Name python

Stop process by ID (replace with the actual process ID)

Stop-Process -Id <ProcessId>

About


Languages

Language:HTML 48.4%Language:CSS 29.8%Language:JavaScript 21.9%