Comparing version 0.3.5 to 0.3.6
@@ -0,1 +1,4 @@ | ||
[0.3.6] | ||
* Added another error scenario for HTTP port availability | ||
[0.3.5] | ||
@@ -2,0 +5,0 @@ * Added httpPort to the skeleton app config because it's easier on new users to modify that setting if it's already there |
@@ -36,2 +36,10 @@ // server | ||
helpers.log({ | ||
content: '\nServer startup failed because port ' + CTZN.config.citizen.httpPort + ' isn\'t open. Please open this port or set an alternate port for HTTP traffic in your config file using the "httpPort" setting.\n\nMake sure to append this alternate port to your app\'s URL (http://localhost:8080, for example).\n', | ||
toConsole: true, | ||
file: 'citizen.txt', | ||
timestamp: false | ||
}); | ||
break; | ||
case 'EADDRINUSE': | ||
helpers.log({ | ||
content: '\nServer startup failed because port ' + CTZN.config.citizen.httpPort + ' is already in use. Please set an alternate port for HTTP traffic in your config file using the "httpPort" setting.\n\nMake sure to append this alternate port to your app\'s URL (http://localhost:8080, for example).\n', | ||
@@ -38,0 +46,0 @@ toConsole: true, |
{ | ||
"name": "citizen", | ||
"version": "0.3.5", | ||
"version": "0.3.6", | ||
"description": "An event-driven MVC and caching framework for Node.js web applications.", | ||
@@ -5,0 +5,0 @@ "author": { |
Sorry, the diff of this file is too big to display
179598
2676