We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 415e1c3 commit ed1d639Copy full SHA for ed1d639
bin/http-server
@@ -136,13 +136,13 @@ function listen(port) {
136
].join(''));
137
138
if (argv.a && host !== '0.0.0.0') {
139
- logger.info((' ' + protocol + canonicalHost + ':' + colors.green(port.toString())));
+ logger.info((' ' + protocol + canonicalHost + ':' + colors.green(port.toString()) + path));
140
}
141
else {
142
Object.keys(ifaces).forEach(function (dev) {
143
ifaces[dev].forEach(function (details) {
144
if (details.family === 'IPv4') {
145
- logger.info((' ' + protocol + details.address + ':' + colors.green(port.toString())));
+ logger.info((' ' + protocol + details.address + ':' + colors.green(port.toString()) + path));
146
147
});
148
0 commit comments