From 239073b97bec8c3f4b6b1af226a21f18559b54af Mon Sep 17 00:00:00 2001 From: coderaiser Date: Fri, 26 Jun 2015 07:11:15 -0400 Subject: [PATCH] docs(help) prefix -> cloudcmd, 31337 -> 1337 --- HELP.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/HELP.md b/HELP.md index f042ac8e..edd42591 100644 --- a/HELP.md +++ b/HELP.md @@ -265,7 +265,7 @@ var http = require('http'), io = require('socket.io'), app = express(), - PORT = 31337, + PORT = 1337, server, socket; @@ -274,7 +274,7 @@ server = http.createServer(app); socket = io.listen(server); app.use(cloudcmd({ - prefix: '/prefix', /* base URL or function which returns base URL (optional) */ + prefix: '/cloudcmd',/* base URL or function which returns base URL (optional) */ socket: socket, /* used by Config, Edit (optional) and Console (required) */ config: {} /* config data (optional) */ }));