Making a Basic Chat with Node.js WebSockets

Interaction between two users is one of the most awesome things about back-end development. Before I learned Node.js, I had always wanted to code a chat for me and my friends, but had no idea how t… Read more

Similar

Breaking the Node.js event loop

Asynchronous programming is difficult to wrap your mind around: threads, semaphores, and deadlocks, oh my! On one hand, Node.js makes this a whole lot easier: no locking or mid-execution interruptions. But its event loop is foreign territory. Let’s explo... (more…)

Read more »