From b3cb047d3d8264d358ac2ad2235b3b7293356433 Mon Sep 17 00:00:00 2001 From: Thomas Efer Date: Sun, 7 Aug 2016 11:34:46 +0200 Subject: [PATCH] set default binding to undefined this will result in default behavior in app.listen within server.js --- src/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.js b/src/main.js index 4fca184..34df437 100644 --- a/src/main.js +++ b/src/main.js @@ -10,7 +10,7 @@ var opts = require('nomnom') }) .option('bind', { abbr: 'b', - default: "::", + default: undefined, help: 'Bind address' }) .option('port', {