Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 870 Bytes

File metadata and controls

16 lines (13 loc) · 870 Bytes

node-homework-02

Complete the following assignment on Node.js Part 2 and push your file to GitHub for reviewing by the instructor. Refer to GitHub Guide for any inquiries

Create a node server that serves a shopping website

The main shopping website has options for:

  1. Selecting at least two shopping categories (use path)
    Example: http://localhost:8080/shoes & http://localhost:8080/socks
  2. Each category should support atleast two options (use query variables)
    Example: http://localhost:8080/shoes/?type=formal and http://localhost:8080/shoes/?type=informal
  3. Each option (four total options minimum) has a webpage of its own where you show description of one or more shopping items
  4. Shopping item page should have: title, image of item, description of item

Server should:

Allow accessing shopping pages
Serve files and images from local server