Skip to content

Part 2: Building the server with Node.js and Socket.io

Sergi Almar edited this page Nov 20, 2013 · 8 revisions

Creating the Node.js project

In order to have the skeleton of the project, we'll rely on express.js (the sinatra-like framework). Install express globally with the following command:

sudo npm install –g express

Now let's create an express based app called mobos-chat

express mobos-chat

Clone this wiki locally