Links

Crear Web Servers Locales

Crear Web Server con Python

# Python 2
python -m SimpleHTTPServer
# Python 3
python3 -m http.server

Crear Web Server con NPM

# Instalarlo globalmente para poder acceder desde consola desde dónde sea
npm install --global http-server
# Via npx sin necesidad de instalar
npx http-server [path] [options]
# Como dependencia dentro de un package
npm install http-server
# Una vez instalado
http-server [path] [options]

Crear Web Server con PHP

php -S 127.0.0.1:8080