@KristjanESPERANTO Will see if I can get one done for PGA. But heading on holidays tomorrow. Back in the new year.
Read the statement by Michael Teeuw here.
Posts
-
RE: Module list updates since the beginning of November
-
RE: MMM-Strava stopped updating
@levon I think check if it is successfully hitting the API on Strava. Check https://www.strava.com/settings/api.

Also check if the Authorization Callback Domain matches your MM IP.
-
RE: MMM-PGA Not Working
Handing over the module
I have recently not had time to look after this module and I think that @dathbe will do a much better job looking after the module going forward.
Here is a link to his fork: MMM-PGA. I have updated the 3rd Party Modules to point to his fork.
I will archive my fork of the module this weekend.
-
RE: Automatic checking of all MagicMirror² modules
@KristjanESPERANTO Stats were great, fixed most of the issues identified in my modules. Majority package.json issues.
Great work @KristjanESPERANTO
-
RE: Recommend a Word of the Day module? (English)
@brentmatthews Hi, yes, I did not require a css file for the module. You are welcome to add and submit a pr if you like.
-
RE: MMM-Strava stopped updating
@levon Awesome. Glad you found the issue. The code uses the npm module strava-v3. It looks like the method used does not return walking.
-
RE: MMM-NOAA3 not working since last update
The issue was that I had to specify the lon and lat manually in the config.js.
-
RE: Best practice 'package-lock.json' for modules
My 2 cents worth.
@Jalibu I agree with your view.
It is highly recommended you commit the generated package lock to source control: this will allow anyone else on your team, your deployments, your CI/continuous integration, and anyone else who runs npm install in your package source to get the exact same dependency tree that you were developing on.
@KristjanESPERANTO Personally I always add it to
.gitignorealong withnode_modulesfolder. -
RE: new Raspi OS release
@rkorell Just read that X11 is still there in Trixie. So no stress yet, but yes, it is old and may be on it’s way out one of these good ol days.
-
RE: Where to git clone MagicMirror 2.16
@plainbroke There you go. Use the upgrade script by @sdetweil with the apply option and it should sort out your modules’ missing dependencies. If you still have issues then post the logs so we can see what else is wrong.
-
RE: module not found error loading module in MagicMirror
Maybe this can help some users.
The following will search all *.js files in the modules folder for the reference of request. You can then just enter the module folders and install as per @sdetweil suggestion above. The same can be done for the other missing modules.
grep -r -E '('request')' ~/MagicMirror/modules/*/*.jsor search for multiple problem modules
grep -r -E '('request') | ('valid-url')' ~/MagicMirror/modules/*/*.jsProduces the following:

-
RE: Automatic checking of all MagicMirror² modules
@KristjanESPERANTO My 20pence/cents worth, I vote to make this the official page. We need to move with the times and the old page is outdated.
-
RE: new Raspi OS release
@BKeyport X11 does not work for me, hence I use Wayfire. As Labwc is supposed to be the newer lighter compositor, I would like to get that to work for me.
-
RE: Avoidance of Troubleshooting Q
@ankonaskiff17 SO I believe a few things have changed since. Some deprecated modules they got rid off i.e. request and some others. Modules that use them would be a problem. My suggestion would be to use Sam’s upgrade script which would check each module directory and fixup the missing dependencies for you.
-
RE: MMM-Hue CORS Policy Issue
@karsten13 So I have been tinkering with the MMM-Hue module a bit and have replaced
jQuerywhich seems to invokeXMLHttpRequest, withnode-fetch, albeit the older version (2.6.1) of node-fetch, but it now returns data without requiring a certificate and the use of https. -
RE: Automatic checking of all MagicMirror² modules
@BKeyport As an IT person I would say we need to move with the times. Being stuck in the old is never good. Have you tagged your modules as per the stats gathered on it?
-
RE: Ads are blocking site content - how to get rid of them?
@ember1205 Easiest way for me was installing the Adguard plugin on Chrome
-
RE: Completely lost
@cowboysdude This is so funny…:face_with_tears_of_joy:
-
RE: Error with node fetch for calendar on fresh install
@landaisbenj I have seen this error before. It comes from installing the latest version of node-fetch whereas the module uses an older version of node-fetch. The latest version is an ES module and must be
import’d instead ofrequire’d in the node_helper. -
RE: Automatic checking of all MagicMirror² modules
@BKeyport Gives users an indication that they are outdated and may not be supported. My point is being stuck in the past is never a good idea unless you want your project to “die”