Giter Site home page Giter Site logo

07-cowsay-http's Introduction

cf Lab 07: Vanilla HTTP Server

Submission Instructions

  • fork this repository & create a new branch for your work
  • write all of your code in a directory named lab- + <your name> e.g. lab-susan
  • push to your repository
  • submit a pull request to this repository
  • submit a link to your PR in canvas
  • write a question and observation on canvas

Learning Objectives

  • students will be able to identify key qualities of the HTTP protocol
  • students will be able to implement an HTTP server using the node.js http module

Requirements

Configuration

Your lab directory must include

  • .gitignore
  • .eslintrc.json
  • .eslintignore
  • package.json
  • README.md

Feature Tasks

  • documentation:
    • Brief description of you app
    • How to install / get started with your app
    • How to interact with the endpoints
      • Sample requests and example responses
      • note: use a code block to show the HTTPie and response format
  • create an HTTP Server using the NodeJS http module
  • create a custom body parsing module that is used for parsing the body of all POST and PUT requests
  • for ALL requests made to /, the server should respond with the following:
    • a header containing Content-Type: text/plain
    • a status code of 200
    • a response with the string "hello from my server!"
  • for all GET requests made to /cowsay, the server should respond with the following:
    • note: the query string should have the key value text=message
    • the response header should include Content-Type: text/plain
    • if the query text=messsage is set, respond with:
      • a status code of 200
      • a response body that includes the value returned from cowsay.say({ text: <querystring text> })
    • if the query text=message is not set, respond with:
      • status code 400
      • a body including the value returned from cowsay.say({ text: 'bad request' })
  • for all POST requests made to /cowsay, the server should respond with the following:
    • the response header should include Content-Type: text/plain
    • if the JSON {text: messsage} is set in the body, respond with:
      • a status code of 200
      • a response body including the value returned from cowsay.say({ text: <querystring text> })
    • if the JSON {text: messsage} is not set in the body, respond with:
      • status code 400
      • a body including the value returned from cowsay.say({ text: 'bad request' })

Tests

  • write tests that validate any request to / and assert that the 200 response is received, including the defined response message
  • write tests that validate all GET requests to /cowsay and assert that the 200 response is received, including the cowsay response message
    • Do not neglect the query string format required for the text message
  • write tests that validate any malformed reqeusts to /cowsay and assert that the 400 response is received, including the cowsay response message
  • write tests that validate all POST requests to /cowsay and assert that the 200 response is received, including the cowsay response message
  • write tests that validate any malformed reqeusts to /cowsay and assert that the 400 response is received, including the cowsay response message
    • Do not neglect the request body format required for the text message

Bonus

  • 2pts: add the ability to change the cowfile - ex: dragon, sheep, etc (note: this should be done through the querystring)

Rubric 10pts

  • Documentation: 2pts
  • Feature Tasks: 5pts
  • Tests: 3pts

07-cowsay-http's People

Contributors

sjschmidt44 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.