Démarrer un serveur http sur un dossier local
Avec les collègues, on s'est lancé quelques défis d'intégration html/css, du coup nous avions besoin d'avoir un serveur http, voici quelques solutions :
Version ruby
ruby -run -e httpd . -p 8000
Plus info ici ruby httpd
Version php
php -S 127.0.0.1:8000
Plus info ici Serveur http php
Version Python3
python3 -m http.server
Plus d'info ici Serveur http Python 2 & 3
Version NodeJS
http-server -p 8000
Plus d'info ici Serveur http NodeJS