Skip to content

Latest commit

 

History

History
81 lines (60 loc) · 5.45 KB

README.md

File metadata and controls

81 lines (60 loc) · 5.45 KB

Introduction to HTTP and Asynchronous Programming using Node.js

In this assignment we will start to build our UF Directory application. We will use Node.js and some of its built in modules to implement a server that provides directory data to clients.

What is HTTP? (Make sure to read this

HTTP (Hypertext Transfer Protocol) is a stateless protocol that allows computers to communicate with each other. We use HTTP to allow our client application (the one users see) to communicate with a server that stores and manipulates data relevant to the user.

HTTP basically boils down to a request and a response. A client makes a request to either retreive, add, delete, or modify data in some fashion. The host recieves this request, and will provide an appropriate response back to the client.

In our case, the server will handle requests for directory listings by responding with listing data in the JSON format.

What is Node.js?

Node.js is a Javascript runtime environment built on Google's V8 engine. In other terms, it is a program that interprets Javascript. If I made a file named hello.js with the line

console.log('Hello, world!');

and then typed the command node hello.js in my terminal, I should expect to see the text Hello, world! printed on the screen.

Node is well known for its ability to run code asynchronously. This means that input and output are non-blocking, and the process of one function does not stop the execution of another. The way this asynchronous code is implemented is through callback functions, which are called after a certain process has been completed. The best way to illustrate this is through example.

This is a simple server that responds to all requests with the text Request received!.

var http = require('http'); 
var port = 8080; 

var requestHandler = function(request, response) {
  response.end('Request received!');
};

// a server is created, but not started
var server = http.createServer(requestHandler);

// the server is now started, listening for requests on port 8080
server.listen(port, function() {
  //once the server is listening, this callback function is executed
  console.log('Server listening on: http://127.0.0.1:' + port);
});
console.log('Is the server started?');

Which log statement do you expect to be printed first? Answer this, then type the command node simpleServer.js and see if the results match up with what you were thinking.

Is the server started? gets printed first is because the call to server.listen() is asynchronous in nature. While server.listen() is not finished, the control flow gets passed to the next line of the program. Once server.listen() is finished, it executes the callback, defined by the anonymous function:

function() {
    console.log('Server listening on: http://127.0.0.1:' + port);
}

Before continuing to the assignment, these two tutorials Tutorial 1 Tutorial 2 tutorials will help you further understand how Node is used to create servers and the nature of callback functions.

As you may imagine, the utility of the above server is quite low, since it has no ability to differentiate between requests and respond in the appropriate fashion.

Assignment

Your objective is to create a server that provides listing data from a JSON file. To accomplish this, you will:

  • use the File System module (fs) to load listings.json into memory
  • create a request handler with the URL module to send the listing data on a GET request to localhost:8080/listings
  • use the HTTP module to create a server that makes use of this request handler

We have provided skeleton code that will help guide you in completing this assignment.

Instructions:

  1. Make sure you have Node.js downloaded and installed. In your terminal run node -v to check that it installed.
  2. Clone this repository and then navigate to it on your local machine's terminal See Link for details on how to clone repository - (https://git-scm.com/book/en/v2/Git-Basics-Getting-a-Git-Repository)
  3. Test your repo is working by using git to change branches to Bootcamp1 then run node simpleServer.js. If this works, you are in business. Happy Coding.
  4. Implement the server by filling in code blocks found in server.js. Then test placing the URL in the browser - http://localhost:8080

Some resources you may find useful: