Open
Description
Building the website with Gulp will be much easier than with HydePHP, because:
- with HydePHP, there are two systems: the PHP system and the NPM system. With Gulp, there is only Gulp.
- the
php hyde serve
clashes withnpm run watch
almost every time because they write to the same directory. With every second change almost, thenpm run watch
command crashes while trying tochmod
the mix-manifest.json file. This is very bad for productivity. With Gulp, I will only run one commandgulp watch
. - Autoreloading the web page in the web browser is much simpler with Gulp and BrowserSync. With HydePHP I would probably only figure it out after a lot of work.
- I only need one page, and maybe a "Contact" page. Gulp feels much lighter for this than HydePHP.
- HydePHP brings in styling customizations which interferes with DaisyUI.