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