This simple application is to dynamically render HTML for a webpage using NodeJS, Express and EJS. You can pass the FizzBuzz number to the server through a url parameter that Express will catch and use to dynamically send a HTML response to the client. The client will see a simple HTML response with no JavaScript. The CSS stylesheet is selected based on if the URL parameter is given a even or odd number to evaluate for FizzBuzz
- ensure node.js is installed:
- open the directory this file is in with your terminal
- 'npm install'
- 'node webServer.js'
- navigate to http://localhost:8080/fizzbuzz/{YOURNUMBER}
- assuming the portNumber variable at the top of the file is still set to 8080

