draft: refactor project so it sits on top of a standalone app
This commit is contained in:
+21
@@ -0,0 +1,21 @@
|
||||
'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;
|
||||
Reference in New Issue
Block a user