I\'ve been staring at node.js and socket.io examples all afternoon and i\'m trying to piece together a simple page that will tell me how many users I have connected to the s
replace app.use(express.bodyParser());, with
app.use(express.bodyParser());
app.use(express.json()); app.use(express.urlencoded());
...save file, restart node server.