A BrowserSync plugin displays the access URL in the console ( terminal and browser ) via QR code
npm i browser-sync bs-console-qrcode
cd ./example
node index.js
// ./example/index.js
const browserSync = require('browser-sync').create();
browserSync.init({
server: 'app',
// plugins: [require('../')],
plugins: ['bs-console-qrcode']
});
MIT License