A node.js chat server/client application.
  • JavaScript 90%
  • HTML 4.9%
  • Less 4.8%
  • CSS 0.2%
Find a file
2014-06-05 03:08:18 -07:00
client/web Add support for desktop notifications. 2013-02-07 16:19:47 -08:00
concepts Add userlist, and a first pass on avatars. 2012-03-24 01:53:05 -07:00
server Remove clone. 2014-06-05 03:08:18 -07:00
.gitignore Add SSL support. 2013-01-18 17:57:00 -08:00
README.md Test commit. 2012-08-23 01:22:56 -07:00

Grmble

Getting Started

  • sudo npm install -g nodemon (for easy iteration)
  • sudo npm install -g node-inspector (for debugging)

Running (Debug)

Open two terminals. In one, run:

nodemon --debug server.js

In the other, run:

node-inspector

This will output a line like:

visit http://0.0.0.0:8080/debug?port=5858 to start debugging

Plug that url into your favorite webkit browser and you'll be able to set breakpoints, etc.