Database System Concepts
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
Bartleby Related Questions Icon

Related questions

bartleby

Concept explainers

Question
100%

Create a node server with the following requirements:

  1. Use the dotenv package to manage your development environment variables.
    1. PORT should be 3000
    2. HOST should be localhost
  2. Endpoints
    1. /dotted
      1. Only GET requests are allowed.
      2. This endpoint will respond with the HTML content type.
      3. This endpoint will take two required query parameters: word1 and word2.
      4. The endpoint will take the two words and create a string that is the two words separated by enough “.” characters to make the length of the string 30.
        1. For example if word1 is “turtle” and word2 is “153” the output should be: turtle.....................153
      5. The response body should be the string wrapped in a <pre> tag.
    2. /fizzBuzz
      1. Only GET requests are allowed.
      2. This endpoint will respond with the HTML content type.
      3. This endpoint will take two required query parameters: start and end.
      4. The endpoint will iterate from start to end and for each number it will:
        1. Show “Fizz” if the number is divisible by 3.
        2. Show “Buzz” if the number is divisible by 5.
        3. Show “FizzBuzz” if the number is divisible by both 3 and 5.
        4. Show the number if it is not divisible by 3 or 5.
        5. Each iteration output should be on a new line.
        6. For example, if start is 9 and end is 16, the output would look like this:
          1. Fizz
            Buzz
            11
            Fizz
            13
            14
            FizzBuzz
            16
        7. The response body should be the string wrapped in a <pre> tag.
Expert Solution
Check Mark
Knowledge Booster
Background pattern image
Computer Science
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education