A simple website in Express.js with 2 different pages:
1st page URL: "http://localhost:3000/"
===> displays a form with a student name input that will redirect to the 2nd page
2nd page URL: "http://localhost:3000/students/:studentName" (example: "http://localhost:3000/students/John")
===> displays a simple message with the name of the student (example: "Hello John")
- Clone this into a directory
- open a command prompt
- change directory to the directory
cd C:\YourDirectory
- start nodemon
nodemon
- navigate your browser to "http://localhost:3000/"