Read the statement by Michael Teeuw here.
Bugsounet and MMM-Pir
-
@lif are there any errors listed in the MM startup messages??
if using pm2 to auto start
pm2 logs --lines =xxx
xxx is number of most recent lines to display, default 15,
usually need 100 or more for full message list -
@sdetweil said in Bugsounet and MMM-Pir:
@lif are there any errors listed in the MM startup messages??
if using pm2 to auto start
pm2 logs --lines =xxx
xxx is number of most recent lines to display, default 15,
usually need 100 or more for full message listThanks for all your help
I think this line might be relevant
0|mm | [2025-03-24 16:54:30.994] [WARN] No /home/pi/MagicMirror/js/…/modules/MMM-Pir/MMM-Pir.js found for module: MMM-Pir.It’s correct, there isn’t a MMM-Pir.js file in the MMM-Pir directory.
-
@lif module rules
module name (exact case) = folder name in modules folder
MUST contain at minimum a file name that matches(exact case) of the modulename.jsAND inside that file it MUST contain a module.register(name…)
where name MUST match (exact case) the module name -
@lif said in Bugsounet and MMM-Pir:
It’s correct, there isn’t a MMM-Pir.js file in the MMM-Pir directory
If you had cloned this repository from @coernel - the MMM-pir.js is missing.
This must be an error.Nevertheless: I’ve played around with the original version from bugsounet and figured out that editing his “origin” MM-Pir.js was really hard because he has deleted all linefeeds.
Seeking around I found an editable clone of the *.js files (including node_helper) in the src folder of the repository.
This is true for the new clone from coernel …
give it a try :-)Regards,
Ralf -
@rkorell said in Bugsounet and MMM-Pir:
Nevertheless: I’ve played around with the original version from bugsounet and figured out that editing his “origin” MM-Pir.js was really hard because he has deleted all linefeeds.
called minified
-
@sdetweil said in Bugsounet and MMM-Pir:
called minified
:-) never seen this before…
Called minified - for good reasons … -
@rkorell said in Bugsounet and MMM-Pir:
Called minified - for good reasons …
On a production web site with 1000000’s of file loads, minified can reduce response times…
otherwise it is a hiding technique, which can(has) hidden hacker attacks on client systems…(loading files, sending credentials…)
hard to examine code -
@sdetweil said in Bugsounet and MMM-Pir:
hard to examine code
Yes, I guess this was bugsounet’s intention - irritating beginners :-)
The code has 247 lines so you avoid 247 CR’s - not THAT much more efficient, I think - but on 100eds of 1000nds of files - may be …
Ralf
-
@rkorell he did not do it for performance
-
@sdetweil I agree :-)