Due 13 Mar 2018
I fixed the bug in the chat application from class. I totally messed up: we needed to listen on IP "0.0.0.0" which is a special address that means "listen for all incoming messages". Listening on "127.0.0.1" means we only get messages coming from "127.0.0.1", which is why it worked locally but not on the network. Download it and try it out across multiple computers if you can!
Next week we're going to look at OSC. OSC is a protocol that sits on top of UDP and TCP and can be much more convenient to use. It is supported by just about every programming language through libraries.
To get your feet wet with OSC, translate the chat application to work over OSC instead of UDP.
cd
into that new foldernode-osc
using npm by running: npm install node-osc