<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Unable to get any modules working]]></title><description><![CDATA[<p dir="auto">I did the basic install:</p>
<pre><code>curl -sL https://raw.githubusercontent.com/MichMich/MagicMirror/master/installers/raspberry.sh | bash
</code></pre>
<p dir="auto">Since I was able to start MagicMirror with out issues, I figured I’d try to add some modules. I started with the monthly calendar one figuring that would be easy:</p>
<pre><code>cd ~/MagicMirror/modules
git clone https://github.com/KirAsh4/calendar_monthly/
</code></pre>
<p dir="auto">Modified my config/config.js:</p>
<pre><code>        modules: [
                {
                        module: "calendar_monthly",
                        position: "bottom_left",
                        config: {
                        }
                }
                {
                        module: "alert",
                },

</code></pre>
<p dir="auto">And now when I try to start it I get:</p>
<pre><code>pi@magicmirror:~/MagicMirror $ npm start

&gt; magicmirror@2.1.1 start /home/pi/MagicMirror
&gt; sh run-start.sh

Starting MagicMirror: v2.1.1
Loading config ...
WARNING! Could not validate config file. Please correct syntax errors. Starting with default configuration.
Loading module helpers ...
Initializing new module helper ...
Module helper loaded: updatenotification
No helper found for module: helloworld.
All module helpers loaded.
Starting server on port 8080 ... 
Starting server op port 8080 ... 
Server started ...
Connecting socket for: updatenotification
Sockets connected &amp; modules started ...
Launching application.

</code></pre>
<p dir="auto">What am I doing wrong?  I thought there might be an issue with the module, so I’ve tried others, but I continue to get the same thing. It only works when I use the default config.js file.</p>
]]></description><link>https://forum.magicmirror.builders/topic/2747/unable-to-get-any-modules-working</link><generator>RSS for Node</generator><lastBuildDate>Fri, 12 Jun 2026 08:02:28 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/2747.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 11 Jun 2017 13:32:09 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Unable to get any modules working on Mon, 12 Jun 2017 20:53:13 GMT]]></title><description><![CDATA[<p dir="auto">You know, I did the same thing.  Drove me NUTS for days trying to figure out what I did.  My problem was the parentheses ’ from copy/pasted scripts and text file was different than the one entered via putty or the console.  One of the tools I found invaluable was a code validator I found online</p>
<p dir="auto"><a href="http://esprima.org/demo/validate.html" target="_blank" rel="noopener noreferrer nofollow ugc">http://esprima.org/demo/validate.html</a></p>
<p dir="auto">Try your MM Script in there to troubleshoot.  Not sure if it will work with everything, but it worked for mine.  I’ve done 5 mirrors with it.</p>
<p dir="auto">Good Luck!</p>
]]></description><link>https://forum.magicmirror.builders/post/22657</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/22657</guid><dc:creator><![CDATA[snotrocket]]></dc:creator><pubDate>Mon, 12 Jun 2017 20:53:13 GMT</pubDate></item><item><title><![CDATA[Reply to Unable to get any modules working on Sun, 11 Jun 2017 14:08:09 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/tomb7" aria-label="Profile: tomb7">@<bdi>tomb7</bdi></a> said in <a href="/post/22608">Unable to get any modules working</a>:</p>
<blockquote>
<p dir="auto">I’ve spent way too long on this (longer than I’m willing to admit) and my problem is a missing comma?!</p>
</blockquote>
<p dir="auto">We’ve all been there. Don’t sweat it. That’s one thing you won’t forget again, right? Enjoy your mirror.</p>
]]></description><link>https://forum.magicmirror.builders/post/22609</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/22609</guid><dc:creator><![CDATA[Mykle1]]></dc:creator><pubDate>Sun, 11 Jun 2017 14:08:09 GMT</pubDate></item><item><title><![CDATA[Reply to Unable to get any modules working on Sun, 11 Jun 2017 14:00:10 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mykle1" aria-label="Profile: Mykle1">@<bdi>Mykle1</bdi></a> said in <a href="/post/22606">Unable to get any modules working</a>:</p>
<blockquote>
<p dir="auto">The config entry should look like this. Look at your config sample. Module entries start with { and end with }, . Yes, the comma is included and necessary.</p>
</blockquote>
<p dir="auto">I’ve spent way too long on this (longer than I’m willing to admit) and my problem is a missing comma?!    :\</p>
<p dir="auto">Thanks for the help!</p>
]]></description><link>https://forum.magicmirror.builders/post/22608</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/22608</guid><dc:creator><![CDATA[tomb7]]></dc:creator><pubDate>Sun, 11 Jun 2017 14:00:10 GMT</pubDate></item><item><title><![CDATA[Reply to Unable to get any modules working on Sun, 11 Jun 2017 13:51:48 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/tomb7" aria-label="Profile: tomb7">@<bdi>tomb7</bdi></a> said in <a href="/post/22605">Unable to get any modules working</a>:</p>
<blockquote>
<p dir="auto">What am I doing wrong?</p>
</blockquote>
<p dir="auto">The config entry should look like this. Look at your config sample. Module entries start with <code>{</code> and end with <code>},</code> . Yes, the comma is included and necessary.</p>
<pre><code>         {
                        module: "calendar_monthly",
                        position: "bottom_left",
                        config: {
                        }
                },
                {
                        module: "alert",
                },</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/22606</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/22606</guid><dc:creator><![CDATA[Mykle1]]></dc:creator><pubDate>Sun, 11 Jun 2017 13:51:48 GMT</pubDate></item></channel></rss>