From 47b01786e2e4dc47dc90a986793482827a710ff5 Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Tue, 7 Jun 2016 16:43:33 -0700 Subject: [PATCH] Add http:// to demo output address This makes it easy to launch the demo in a browser by right clicking the URL in gnome-terminal --- demo/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demo/app.js b/demo/app.js index a7b79478..77038cc2 100644 --- a/demo/app.js +++ b/demo/app.js @@ -45,5 +45,5 @@ app.ws('/bash', function(ws, req) { var port = process.env.PORT || 3000, host = '0.0.0.0'; -console.log('App listening to ' + host + ':' + port); +console.log('App listening to http://' + host + ':' + port); app.listen(port, host);