Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 383 Bytes

README.md

File metadata and controls

22 lines (17 loc) · 383 Bytes

webpack-hmr-php

hot module reload for php

#installation

npm install

#Usage on an other terminal run a local php server:

php -S 0.0.0.0:7000 -t web

then run

npm start

now if you go on http://localhost:8080 you see the word coucou in orange

if you update the color in main.css, the change will be done without having to refresh the page.