- Introduction
- Getting Started
- What does this add-on do?
- Other ways to use Browsersync with this add-on
Browsersync is free software that features:
- live reloads
- click mirroring
- network throttling
This add-on allows you to run Browsersync through the DDEV web service.
- Install the DDEV Browsersync add-on:
ddev get ddev/ddev-browsersync
ddev restart
ddev browsersync
The new ddev browsersync
global command runs Browsersync inside the web container and provides a
link to the Browsersync proxy URL, something like https://<project>.ddev.site:3000
.
The Browsersync’d URL is HTTPS, not HTTP. ddev-router redirects traffic to HTTPS, but Browsersync does not know this.
EG. "External: http://d9.ddev.site:3000" => Access on https://d9.ddev.site:3000
💡 This add-on moves to a per-project approach in v2.5.0+. You can safely delete the global
~/.ddev/commands/web/browsersync
once you’re on v2.5.0 or higher—this will not affect usage.
If you run ddev browsersync
from a local project and get Error: unknown command "browsersync" for "ddev"
, run the following to add the command to the project:
ddev get ddev/ddev-browsersync
Once Browsersync is running, visit https://<project>.ddev.site:3000
or run ddev launch :3000
to launch the proxy URL in a web browser.
- Checks to make sure the DDEV version is adequate.
- Adds
.ddev/web-build/Dockerfile.ddev-browsersync
, which installs Browsersync using npm. - Adds a
browser-sync.js
to define the operation of the base setup. - Adds a
.ddev/docker-compose.browsersync.yaml
, which exposes and routes the ports necessary. - Adds a
ddev browsersync
shell command, which lets you easily start Browsersync when you want it.
For WordPress projects, this add-on also:
- Adds a
wp-config-ddev-browser.php
file which modifies the WP_HOME and WP_SITEURL values to work with Browsersync. - On install, modifies the
wp-config-ddev.php
file to include thewp-config-ddev-browser.php
file.
There are many other options to integrate browsersync into your project, including:
Please see Browsersync documentation for more details. PRs for install steps for specific frameworks are welcome.
The existing example with just ddev browsersync
should work out of the box.
There is no need for additional configuration, but you may want to edit
the .ddev/browser-sync.js
file to specify exactly what files and directories
should be watched. If you watch less things it’s easier on your computer.
- If you get
Error: ENOSPC: System limit for number of file watchers reached, watch '/var/www/html/web/core/themes/classy/images/icons/video-x-generic.png'
it means you either have to increase the file watcher limit or decrease the number of files you’re watching.-
To decrease the number of files you’re watching, edit the
ignore
section inbrowser-sync.js
(or another config file if you have a more complex setup). -
On Colima, run
colima ssh
andsudo sysctl fs.inotify.max_user_watches
to see how many watches you have. To increase it, use something likesudo sysctl -w fs.inotify.max_user_watches=2048576
. Unfortunately, this has to be done on every Colima restart. -
On Docker Desktop for Mac,
docker run -it --privileged --pid=host justincormack/nsenter1
andsysctl -w fs.inotify.max_user_watches=1048576
. Unfortunately, this has to be done again on every Docker restart. -
On Docker Desktop for Windows, add or edit
~/.wslconfig
with these contents:[wsl2] kernelCommandLine = "fs.inotify.max_user_watches=1048576"
-
On Linux, you can change
fs.inotify.max_user_watches
on the host in/etc/sysctl.d/local.conf
or elsewhere.
-
Demo: https://github.com/tyler36/browsersync-demo
- Update
webpack.mix.js
// Use the HOSTNAME provided by DDEV
let url = process.env.DDEV_HOSTNAME;
mix.js('resources/js/app.js', 'public/js')
.postCss('resources/css/app.css', 'public/css', [
//
])
.browserSync({
proxy: "localhost",
host: url,
open: false,
ui: false
});
- Start Browsersync service
ddev exec npm run watch
...
[Browsersync] Proxying: http://localhost:3000
[Browsersync] Access URLs:
---------------------------------------------------
Local: http://localhost:3000
External: http://browsersync-demo.ddev.site:3000
---------------------------------------------------
- Browsersync will be running on HTTPS at
https://browsersync-demo.ddev.site:3000
Contributed and maintained by tyler36
The changes this add-on makes to the wp-config-ddev.php
file during installation can be seen below.
The wp-config-ddev-browserync.php
file is included before the /** WP_HOME URL */
comment.
Before:
/** WP_HOME URL */
defined( 'WP_HOME' ) || define( 'WP_HOME', 'https://projectname.ddev.site' );
/** WP_SITEURL location */
defined( 'WP_SITEURL' ) || define( 'WP_SITEURL', WP_HOME . '/' );
After:
/** Include WP_HOME and WP_SITEURL settings required for Browsersync. */
if ( ( file_exists( __DIR__ . '/wp-config-ddev-browsersync.php' ) ) ) {
include __DIR__ . '/wp-config-ddev-browsersync.php';
}
/** WP_HOME URL */
defined( 'WP_HOME' ) || define( 'WP_HOME', 'https://projectname.ddev.site' );
/** WP_SITEURL location */
defined( 'WP_SITEURL' ) || define( 'WP_SITEURL', WP_HOME . '/' );