vubui237 / chatty

The start of the messaging client for DevMountain

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Chatty

Objectives

This project uses Node.js and Express to build a basic REST-based chat server. You will also be plugging in a basic Angular app to make your first full stack application!

Step 1: Basic Setup

  1. Clone this project

  2. Run npm init to to create our package.json.

  3. Install the packages we'll need — express and body-parser
    npm install --save package-name

  4. Require express and body-parser in index.js

  5. Initialize express and assign it the app variable var app = express()

  6. Start listening to a port using app.listen(3000)

We need to send our client-side code (located in the assets folder) to the user when they go to our site. We'll also want express to automatically parse stringified JSON data coming in and assign it as a JS Object to req.body.

The express and body-parser packages provide an easy way to do these two tasks. After var app = express() insert these two lines:

app.use(express.static('assets'))
app.use(bodyParser.json())

We will discussing, in much more depth, how this works tomorrow!

Step 2: Serving Messages

  1. Create an array for storing your messages temporarily. You could call the variable messages. Think about what scope this variable should be placed in. We need to be sure we keep our messages from previous requests or at least until our server is restarted.

  2. Write a new GET endpoint that returns our array of messages. It will look something like this:

app.get('/messages', function (req, res, next) {
  res.status(200).json({ messages: messages });
});
  1. Test your server. Run it with nodemon index.js and use Postman to make a GET request to /messages. Add some default messages to the messages variable to make sure it is returning data the way you would expect.

Step 3: Adding Messages

Lets create our endpoint to POST a new message. This will be structured similarly to our GET endpoint. Let's start by logging req.body.

app.post('/messages', function (req, res, next) {
  console.log(req.body);
});

Let's test this out in Postman

  1. Select 'POST' from the request method dropdown next to your URL

  2. Set the Content-Type of the request

  3. Select the 'Body' tab

  4. Select the 'raw' radio button

  5. Select 'JSON (application/json)' in the dropdown menu to the right of the radio buttons

  6. Add some JSON data to the text-area in this tab. Let's start with something like:

{
  "message": "Wubba Dubba Lub Dub!"
}
  1. Smash the 'Send' button!

Check to see that our console.log(req.body) code logged something to the terminal. It should look something like { message: 'Wubba Dubba Lub Dub!' }. If you are getting errors, check the formatting of your JSON. It is important to use double quotes around both the key and the value.

Brilliant. Let's finish up this endpoint.

  1. Add the message from req.body to our array of messages.

  2. End the response using the status and json methods to send back that our full array of messages just like we did for the GET endpoint. It will look similar to this:

app.post('/messages', function (req, res, next) {
  messages.push(req.body.message);
  res.status(200).json({ messages: messages });
});
  1. Test this out again in Postman! You should get a response this time.

Step 4: Test the client-side code

Go to http://localhost:3000 in your browser. The app should be up and running!

Take a few minutes to browse through the client-side code provided. It should all be very familiar.

Step 5: Timestamps

Now that we have basic functionality, let's do some server-side data manipulation. We want to add a timestamp to each message and display it.

First, lets change our messages array — from an array of strings to an array of objects. This way, we can assign multiple properties to each message: time and message. Let's do this by pushing a newly created object to our array instead of just the message sent to us.

messages.push({ message: req.body.message, time: new Date() });

Second, we need to make a small adjustment to our client-side code to handle this new data structure. The ng-repeat of over our messages will need to look simlar to this:

<div ng-repeat="message in messages track by $index">
  {{message.message}} : {{message.time}}
</div>

As easy as that, we've added new server-side data and passed it back to our client-side code. You may have noticed that the date is displaying poorly. Look up the Angular documentation for the 'date' filter and try to set it up so that it shows something along the lines of '5:22 PM'.

Step 6 (Black Diamond): Adding more data

Try adding some more sophistication to your chat client, such as a username or profile picture. Allow the user to specify their username when posting a message.

Contributions

If you see a problem or a typo, please fork, make the necessary changes, and create a pull request so we can review your changes and merge them into the master repo and branch.

Copyright

© DevMountain LLC, 2015. Unauthorized use and/or duplication of this material without express and written permission from DevMountain, LLC is strictly prohibited. Excerpts and links may be used, provided that full and clear credit is given to DevMountain with appropriate and specific direction to the original content.

About

The start of the messaging client for DevMountain


Languages

Language:JavaScript 41.8%Language:HTML 29.9%Language:CSS 28.3%