set default binding to undefined

this will result in default behavior in app.listen within server.js
This commit is contained in:
Thomas Efer 2016-08-07 11:34:46 +02:00 committed by GitHub
parent aa9a469bb4
commit b3cb047d3d

View file

@ -10,7 +10,7 @@ var opts = require('nomnom')
}) })
.option('bind', { .option('bind', {
abbr: 'b', abbr: 'b',
default: "::", default: undefined,
help: 'Bind address' help: 'Bind address'
}) })
.option('port', { .option('port', {