-
-
Chatty Chat - Introduction
- 111 Views
- 0 Likes
- 0 Comments
A brief introduction to the fullstack JavaScript app that we'll be making.
-
Chatty Chat: Part 10 - Emit a Join Event to Make a User Join a Chatroom
- 131 Views
- 0 Likes
- 0 Comments
Let's make sure that when someone clicks on a room link they're joining that particular chatroom.
-
Chatty Chat: Part 11 - DOM Handler Function
- 113 Views
- 0 Likes
- 0 Comments
Let's work on a DOM handler function whose purpose is to insert messages into the DOM and display them in the chatbox.
-
Chatty Chat: Part 12 - Handle form submission
- 53 Views
- 0 Likes
- 0 Comments
Let's handle the form submission when someone sends a chat message and then receive the emitted chat message on the server side and send it back across...
-
Chatty Chat - Part 1: Setting Up
- 123 Views
- 0 Likes
- 0 Comments
Let's set up our Express.js app and install all the packages that we need.
-
Chatty Chat - Part 2: Setting Up the Server
- 187 Views
- 0 Likes
- 0 Comments
Let's instantiate an express app and get out server up and running.
-
Chatty Chat - Part 3: Create a Random Unique ID for Each Room
- 112 Views
- 0 Likes
- 0 Comments
Let's start the process of creating chatrooms with random IDS in this cast.
-
Chatty Chat - Part 4: Join/GET a Chatroom with a Unique ID
- 125 Views
- 0 Likes
- 0 Comments
In the last Cast we created a unique random number for a chatroom. Now we will be requesting/GETting the chatroom webpage associated with a certain ID
-
Chatty Chat: Part 5 - Pass the Room Link to the Frontend
- 122 Views
- 0 Likes
- 0 Comments
Now since we're working on a chatroom that is accessible via a link let's work on showing the link to the end-user.