UNPKG

react-router-ga

Version:

[![Downloads](https://img.shields.io/npm/dm/react-router-ga)](https://npm.im/react-router-ga) [![Version](https://img.shields.io/npm/v/react-router-ga)](https://npm.im/react-router-ga) [![License](https://img.shields.io/npm/l/react-router-ga)](https://ope

22 lines (17 loc) 388 B
'use strict'; function runBonjour({ port }) { const bonjour = require('bonjour')(); const os = require('os'); bonjour.publish({ name: `Webpack Dev Server ${os.hostname()}:${port}`, port, type: 'http', subtypes: ['webpack'], }); process.on('exit', () => { bonjour.unpublishAll(() => { bonjour.destroy(); }); }); } module.exports = runBonjour;