Read the statement by Michael Teeuw here.
Blank Screen after New Installment
-
Hi,
while updating my Mirror it decided to crash. So it was not able to start anymore.
I completely reinstalled Rasp OS and Magic Mirror.
I added my modules and my old config, but when I try to start, it just shows me a blank screen.
This is my pm2 log
hereNeeded to post it on Pastebin since it was flagged as spam here…
Can anyone help me?
-
@rxldavid
You need ‘request’ module. It was deprecated from MM, but your quote of the day module is depending on it.- the best thing is to request module developers fixing it.
- you can install ‘request’ module by yourself
Go to quote of day module directory then;
npm install request
-
@mmrize They may need more than that if the module don’t have a package.json in the first place.
https://forum.magicmirror.builders/topic/15666/add-request-to-modules/3?_=1633554344090
-
@mmrize we are trying to help users update the dependencies in the module folder
if no package JSON exists, they need to create one, else the dependency will be loaded in the base mm folder. and is subject to deletion on updates. (because the new base package.json does not reference them and npm now deletes unreferenced, as a security exposure)
npm init -y
will create an empty package.json file,
and allow local saving. -
@mmrize fixed it ty :)