Code Monkey home page Code Monkey logo

http-socket-server's Introduction

HTTP Socket Server

Basic http server accepting socket connections via net.Server

Resources

HTTP Slides

NodeJS Streams

Events and Emitters

NodeJS net module

HTTP 1.1 Header Spec

Goals

The main server file is server.js. Additional javascript files may also be created.

  1. Create a socket server to accept TCP connections
  2. The server will listen on port 8080
  3. Transmit 'standard' HTTP Headers to the client
  4. Transmit a hardcoded, in-memory html body for each route
  5. Terminate the connection
  6. If the path is not found in your routes, return a 404 status code and output some text/html content

note, all data must be stored in memory, that is, in javascript only. external modules may be used through revealing module pattern.

HTTP Headers

  1. The correct status code should be sent
  2. Date : The current timestamp should be sent in RFC1123 format
  3. Server : The name of your custom http server

Testing

run your server with nodemon

nodemon server.js

Test with curl, postman, and Google Chrome

HTTP Headers

To view response headers, with your server running:

curl -I localhost:8080/
curl -I localhost:8080/hydrogen.html
curl -I localhost:8080/incorrect-path

HTTP Body Content

To view the response body, with your server running:

curl localhost:8080/
curl localhost:8080/hydrogen.html
curl localhost:8080/incorrect-path

HTTP Server data

Get the server content in this Gist

Routes

HTTP Path Content
GET / index.html
GET /index.html index.html
GET /hydrogen.html hydrogen.html
GET /helium.html helium.html
GET /404.html 404.html
GET /css/styles.css styles.css

Advanced

  1. If the request for a file has not been modified since the last visit, return a 304 response code.

hint: use the If-Modified-Since request header


HTTP Socket Client

Basic http client establishing socket connections using net.Socket

Resources

HTTP Slides

NodeJS Streams

Events and Emitters

NodeJS net module

NodeJS process.argv

HTTP 1.1 Header Spec

Goals

The main client file is client.js. The client will run once, then exit.

  1. Create a client to establish TCP socket connections to HTTP servers
  2. The node command requires a single argument, the host and uri to request a resource from
  • example: www.devleague.com/apply
  1. Transmit 'standard' HTTP Headers to the server
  2. Wait for a response from the server
  3. When the server responds, display the response message body to the terminal
  4. If the node client is run with no arguments, display a "help/usage" message that explains how to use your client, including all available options

example usage:

node client.js www.devleague.com

HTTP Request Headers

Send at least these headers in each request

  1. The proper METHOD and URI should be used in the Request Line
  2. Date : The current timestamp should be sent in RFC1123 format
  3. Host : The name or ip address of the host that is being connected
  4. User-Agent : The name of your custom http client

HTTP Response Headers

Parse the response headers, and store them in a hash table for later use.

Testing

Test by requesting web servers with domain names, and your own running server.js

node client.js www.devleague.com
node client.js localhost

Features

  1. Pipe the response content stream to stdout
  2. CLI Option to set the request method to use
  3. CLI Option to display headers only (instead of content body)
  4. CLI Option to set the port to use to connect to the server
  5. Error Handling
  6. Handle the case where the HTTP Request is a client error (40x)
  7. Handle the case where the host can not be reached
  8. Handle the case where the host is found, and not listening on port 80
  9. Handle the case where the host is found and listening on the specified port, and not returning a valid HTTP Response
  10. Handle the case where the HTTP Response results in a server error (50x)
  11. Handle any other errors that you may encounter

Advanced Client

Allow the client to send a valid POST request with a message body to a server.

2Advanced Client

Allow CLI Option to save the response message body as a file specified by the client. For example:

node client.js -save devleague.com_index.html http://www.devleague.com

would save the contents of the response message from requesting http://www.devleague.com to a file named devleague.com_index.html

http-socket-server's People

Contributors

theremix avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.