Web Application Using The Node.js Runtime Environment

Опубликовано: 18 Май 2026
на канале: Randy Eddy's Projects
140
0

This web application simulates a blogging website with a main page and a posts page where visitors can post comments.

This web application makes use of the Node.js runtime environment by using a server, a router, and request handlers thus giving the following advantages over a standard JavaScript approach:
-Page can be accessed as long as server is running.
-Router allows for multiple users to access page at the same time without waiting in a queue.
-Request Handlers know what pages to call upon based on the url.
-The comments left by users are stored and not lost even after shutting down the server or using a different browser.

This project was created using HTML, CSS, and JavaScript by Afiya Altaf, Randy Eddy, Nathan Frenette, and Dean Massecar for Computer Science 3715 taught by Dr. Adrian Fiech, fall semester 2014 at Memorial University of Newfoundland.

If you are interested in viewing the source files, you can do so at GitHub: https://github.com/dmassecar/COMP3715...