Read the statement by Michael Teeuw here.
MMM-Carousel not displaying
-
I am trying to use the carouselId:“1” function on multiple calendars. But when in use i am getting a module load error… not sure i am doing this right…
code_text ```[{name:'calendar', classes:'zoom200', position:"middle_center", carouselId:"1"} ], { module: "calendar", colored: true, header: "Mikes Calendar", position: "left", timeFormat: 'absolute', broadcastPastEvents: false, fade: false, showEnd: false, color: '#ffffff', config: { carouselId:"1" tableClass: "medium", calendars: [ { symbol: "calendar-day", url:"https://outlook.office365.com/owa/f2033a09d6504d21833241fb44df8c3c@dxc.com/a53b29290ce3e0405428856/calendar.ics" }, ] } }, -
@sdetweil I am having an intermittent issue now with displaying my office 365 work calendar… Sometimes it comes back with an "error in calendar module check logs for more details. I don’t see anything in the development console… Any direction here, please?
-
@pastormingle i changed the time intervals on the fetch and that seems to have worked… thanks…
-
@pastormingle messages for fetching would be in the place u start mm
npm start or pm2
-
@sdetweil Thanks Sam…
Can you help me with an mmm-calendarext issue? I have a basic config for it and all I get is a blank screen… If I do console window it just hangs…{ module: 'MMM-CalendarExt', position: "center", config: { calendars: [ { url:"https://calendar.google.com/calendar/ical/pastormike%40htni.org/private-349ihavethisblocked/basic.ics" } ] } }, -
-
@sdetweil Still not able to display… I ran the following command and it didn’t return any errors…
pi@raspberrypi:~/MagicMirror/modules/MMM-CalendarExt $ npm init -y Wrote to /home/pi/MagicMirror/modules/MMM-CalendarExt/package.json: { "name": "MMM-CalendarExt", "version": "1.0.0", "description": "Alternative calendar module for [MagicMirror](https://magicmirror.builders/)", "main": "MMM-CalendarExt.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, "repository": { "type": "git", "url": "git+https://github.com/eouia/MMM-CalendarExt.git" }, "keywords": [], "author": "", "license": "ISC", "bugs": { "url": "https://github.com/eouia/MMM-CalendarExt/issues" }, "homepage": "https://github.com/eouia/MMM-CalendarExt#readme", "dependencies": { "all": "0.0.0" }, "devDependencies": {} } -
@pastormingle all that does is built the empty packjson,which will be used by the
npm install xxx -savethat second step is what fixes the missing library xxx once you figure out it’s name from the log messages.
ps. there are more than one potential missing library… so I teach u how to find it so next time you don’t have to post here to find the fix.
-
@sdetweil guess i"m not following what the xxx file would be?
-
@pastormingle if i do a ctrl I i get the following
?

-
@pastormingle from the linked topic
then regardless do
npm install xxx
where xxx is the library noted in the messagecannot find module xxx
to find this message, look in the output of npm start. or if you use pm2 to launch mm do
pm2 logs --lines=50__----------------
so you look for the message and get the name from it and replace xxx with the name
-
@sdetweil ```
pi@raspberrypi:~ $ pm2 logs --lines=50 MagicMirror
[TAILING] Tailing last 50 lines for [MagicMirror] process (change the value with --lines option)
/home/pi/.pm2/logs/MagicMirror-error.log last 50 lines:
0|MagicMir | - /home/pi/MagicMirror/js/electron.js
0|MagicMir | - /home/pi/MagicMirror/node_modules/electron/dist/resources/default_app.asar/main.js
0|MagicMir | -
0|MagicMir | [14.12.2021 16:02.14.185] [ERROR] App threw an error during load
0|MagicMir | [14.12.2021 16:02.14.187] [ERROR] Error: Cannot find module ‘valid-url’
0|MagicMir | Require stack:
0|MagicMir | - /home/pi/MagicMirror/modules/MMM-CalendarExt/node_helper.js
0|MagicMir | - /home/pi/MagicMirror/js/app.js
0|MagicMir | - /home/pi/MagicMirror/js/electron.js
0|MagicMir | - /home/pi/MagicMirror/node_modules/electron/dist/resources/default_app.asar/main.js
0|MagicMir | -
0|MagicMir | at Module._resolveFilename (internal/modules/cjs/loader.js:972:15)
0|MagicMir | at Function.n._resolveFilename (electron/js2c/browser_init.js:249:921)
0|MagicMir | at Function.Module._resolveFilename (/home/pi/MagicMirror/node_modules/module-alias/index.js:49:29)
0|MagicMir | at Module._load (internal/modules/cjs/loader.js:848:27)
0|MagicMir | at Function.f._load (electron/js2c/asar_bundle.js:5:12633)
0|MagicMir | at Module.require (internal/modules/cjs/loader.js:1032:19)
0|MagicMir | at require (internal/modules/cjs/helpers.js:72:18)
0|MagicMir | at Object. (/home/pi/MagicMirror/modules/MMM-CalendarExt/node_helper.js:3:18)
0|MagicMir | at Module._compile (internal/modules/cjs/loader.js:1152:30)
0|MagicMir | at Object.Module._extensions…js (internal/modules/cjs/loader.js:1173:10)
0|MagicMir | [14.12.2021 16:02.14.197] [ERROR] Whoops! There was an uncaught exception…
0|MagicMir | [14.12.2021 16:02.14.203] [ERROR] Error: Cannot find module ‘valid-url’
0|MagicMir | Require stack:
0|MagicMir | - /home/pi/MagicMirror/modules/MMM-CalendarExt/node_helper.js
0|MagicMir | - /home/pi/MagicMirror/js/app.js
0|MagicMir | - /home/pi/MagicMirror/js/electron.js
0|MagicMir | - /home/pi/MagicMirror/node_modules/electron/dist/resources/default_app.asar/main.js
0|MagicMir | -
0|MagicMir | at Module._resolveFilename (internal/modules/cjs/loader.js:972:15)
0|MagicMir | at Function.n._resolveFilename (electron/js2c/browser_init.js:249:921)
0|MagicMir | at Function.Module._resolveFilename (/home/pi/MagicMirror/node_modules/module-alias/index.js:49:29) -
@pastormingle said in MMM-Carousel not displaying:
Error: Cannot find module ‘valid-url’
what is so hard about this?
-
@sdetweil the module name is valid-url… i though it’s looking for a URL… http://url…
-
@pastormingle then
npm install valid-url --save
in the mm module folder
because xxx is valid-url in that error message
-
@sdetweil ```
^C
pi@raspberrypi:~ $ npm install valid-url --save
npm WARN tsutils@3.21.0 requires a peer of typescript@>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta but none is installed. You must install peer dependencies yourself.
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@2.3.2 (node_modules/fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@2.3.2: wanted {“os”:“darwin”,“arch”:“any”} (current: {“os”:“linux”,“arch”:“arm”})- valid-url@1.0.9
updated 1 package and audited 964 packages in 19.443s
112 packages are looking for funding
runnpm fundfor detailsfound 22 vulnerabilities (19 moderate, 3 high)
runnpm audit fixto fix them, ornpm auditfor details
pi@raspberrypi:~ $ cd MagicMirror
pi@raspberrypi:~/MagicMirror $ cd modules
pi@raspberrypi:~/MagicMirror/modules $ dir
Archive calendar_monthly default MMM-CalendarExt MMM-CalendarExtMinimonth MMM-CalendarExtTimeline MMM-Carousel MMM-GoogleTasks MMM-ip MMM-PaprikaMenu MMM-RAIN-MAP MMM-RAIN-MAP-L MMM-RAIN-MAPold
pi@raspberrypi:~/MagicMirror/modules $ npm install valid-url --save
npm WARN tsutils@3.21.0 requires a peer of typescript@>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta but none is installed. You must install peer dependencies yourself.
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@2.3.2 (node_modules/fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@2.3.2: wanted {“os”:“darwin”,“arch”:“any”} (current: {“os”:“linux”,“arch”:“arm”})- valid-url@1.0.9
added 1 package and audited 967 packages in 20.435s
112 packages are looking for funding
runnpm fundfor detailsfound 20 vulnerabilities (18 moderate, 2 high)
runnpm audit fixto fix them, ornpm auditfor details
pi@raspberrypi:~/MagicMirror/modules $ - valid-url@1.0.9
-
@pastormingle said in MMM-Carousel not displaying:
pi@raspberrypi:~/MagicMirror/modules
in the folder of the mm module having trouble
/home/pi/MagicMirror/modules/MMM-CalendarExt
-
@sdetweil ```
pi@raspberrypi:~/MagicMirror/modules/MMM-CalendarExt $ npm install valid-url --save- valid-url@1.0.9
added 1 package and audited 2 packages in 0.951s
found 0 vulnerabilities
- valid-url@1.0.9
-
@pastormingle yes and then start MagicMirror
if u still get a black screen the check again…
-
@pastormingle ```
pi@raspberrypi:~/MagicMirror/modules/MMM-CalendarExt $ pm2 logs --lines=50 MagicMirror
[TAILING] Tailing last 50 lines for [MagicMirror] process (change the value with --lines option)
/home/pi/.pm2/logs/MagicMirror-error.log last 50 lines:
0|MagicMir | -
0|MagicMir | [14.12.2021 16:02.14.185] [ERROR] App threw an error during load
0|MagicMir | [14.12.2021 16:02.14.187] [ERROR] Error: Cannot find module ‘valid-url’
0|MagicMir | Require stack:
0|MagicMir | - /home/pi/MagicMirror/modules/MMM-CalendarExt/node_helper.js
0|MagicMir | - /home/pi/MagicMirror/js/app.js
0|MagicMir | - /home/pi/MagicMirror/js/electron.js
0|MagicMir | - /home/pi/MagicMirror/node_modules/electron/dist/resources/default_app.asar/main.js
0|MagicMir | -
0|MagicMir | at Module._resolveFilename (internal/modules/cjs/loader.js:972:15)
0|MagicMir | at Function.n._resolveFilename (electron/js2c/browser_init.js:249:921)
0|MagicMir | at Function.Module._resolveFilename (/home/pi/MagicMirror/node_modules/module-alias/index.js:49:29)
0|MagicMir | at Module._load (internal/modules/cjs/loader.js:848:27)
0|MagicMir | at Function.f._load (electron/js2c/asar_bundle.js:5:12633)
0|MagicMir | at Module.require (internal/modules/cjs/loader.js:1032:19)
0|MagicMir | at require (internal/modules/cjs/helpers.js:72:18)
0|MagicMir | at Object. (/home/pi/MagicMirror/modules/MMM-CalendarExt/node_helper.js:3:18)
0|MagicMir | at Module._compile (internal/modules/cjs/loader.js:1152:30)
0|MagicMir | at Object.Module._extensions…js (internal/modules/cjs/loader.js:1173:10)
0|MagicMir | [14.12.2021 16:02.14.197] [ERROR] Whoops! There was an uncaught exception…
0|MagicMir | [14.12.2021 16:02.14.203] [ERROR] Error: Cannot find module ‘valid-url’
0|MagicMir | Require stack:
0|MagicMir | - /home/pi/MagicMirror/modules/MMM-CalendarExt/node_helper.js
0|MagicMir | - /home/pi/MagicMirror/js/app.js
0|MagicMir | - /home/pi/MagicMirror/js/electron.js
0|MagicMir | - /home/pi/MagicMirror/node_modules/electron/dist/resources/default_app.asar/main.js
0|MagicMir | -
0|MagicMir | at Module._resolveFilename (internal/modules/cjs/loader.js:972:15)
0|MagicMir | at Function.n._resolveFilename (electron/js2c/browser_init.js:249:921)
0|MagicMir | at Function.Module._resolveFilename (/home/pi/MagicMirror/node_modules/module-alias/index.js:49:29)
0|MagicMir | at Module._load (internal/modules/cjs/loader.js:848:27)
0|MagicMir | at Function.f._load (electron/js2c/asar_bundle.js:5:12633)
0|MagicMir | at Module.require (internal/modules/cjs/loader.js:1032:19)
0|MagicMir | at require (internal/modules/cjs/helpers.js:72:18)
0|MagicMir | at Object. (/home/pi/MagicMirror/modules/MMM-CalendarExt/node_helper.js:3:18)
0|MagicMir | at Module._compile (internal/modules/cjs/loader.js:1152:30)
0|MagicMir | at Object.Module._extensions…js (internal/modules/cjs/loader.js:1173:10) {
0|MagicMir | code: ‘MODULE_NOT_FOUND’,
0|MagicMir | requireStack: [
0|MagicMir | ‘/home/pi/MagicMirror/modules/MMM-CalendarExt/node_helper.js’,
0|MagicMir | ‘/home/pi/MagicMirror/js/app.js’,
0|MagicMir | ‘/home/pi/MagicMirror/js/electron.js’,
0|MagicMir | ‘/home/pi/MagicMirror/node_modules/electron/dist/resources/default_app.asar/main.js’,
0|MagicMir | undefined
Hello! It looks like you're interested in this conversation, but you don't have an account yet.
Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.
With your input, this post could be even better 💗
Register Login