Skip to content

Commit

Permalink
Show on which port tutorial server runs
Browse files Browse the repository at this point in the history
  • Loading branch information
Ján Vorčák committed Mar 17, 2016
1 parent 5baf16a commit 9602a35
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions examples/tutorial/server/index.js
Expand Up @@ -21,5 +21,6 @@ RethinkdbWebsocketServer.listen({
});

// Start the HTTP server on port 8015
httpServer.listen(8015);
console.log('Tutorial server started');
const port = 8015;
httpServer.listen(port);
console.log(`Tutorial server started on port ${port}`);

0 comments on commit 9602a35

Please sign in to comment.