package.build.print-release-url.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mapbox-gl Show documentation
Show all versions of mapbox-gl Show documentation
A WebGL interactive maps library
The newest version!
const address = require('address');
const qrcode = require('qrcode-terminal');
const url = `http://${address.ip()}:9966/test/release/index.html`;
console.warn(`Scan this QR code or enter ${url}`);
qrcode.generate(url);