// opens browser on initial server start
nodemon.on('config:update', function () {
setTimeout(function () {
require('open')('http://localhost:=8080/debug?port=5858');
}, 500);
});
// web server port
port: 8080,
Especially since 8080 is often used by other software, e.g. local proxy.
Gruntfile.js
See https://github.com/DaftMonk/generator-angular-fullstack/blob/0fee45d47ec174fe8bdfafe4b5e9498ab3140bfe/app/templates/Gruntfile.js#L251 :
karma.conf.js
See https://github.com/DaftMonk/generator-angular-fullstack/blob/0fee45d47ec174fe8bdfafe4b5e9498ab3140bfe/app/templates/karma.conf.js#L55
Especially since 8080 is often used by other software, e.g. local proxy.