This is just a simple NodeJs application which serves some static files present in the public folder.
// clone the application with git clone
// then install the npm modules using
npm install
open the config.js file and set the configuration based on your need
The content of config.js file is
module.exports = {
"serverPort" : 8080 // this is the server port on which node application will start
}
node server.js
Open the app in browser using
http:\\ip-address:8080