mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-23 04:25:21 +08:00
22 lines
388 B
JavaScript
22 lines
388 B
JavaScript
|
|
'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;
|