First you need to generate a pair of keys. Generate the private as follows:
openssl genrsa -out privatekey.pem 4096
Then generate the public one using the private generated previously:
openssl req -new -x509 -key privatekey.pem -out publickey.cer
Then proceed to install node dependencies, execute the following in project root directory:
npm install
Finally run:
npm start
Keys must be created first to avoid errors in app execution.