Read the statement by Michael Teeuw here.
Config Error
-
@PHAGE-GOV that is what you have to figure out… run the syntax checker
cd ~/MagicMirror npm run config:checkthe error is typically reported on the line following the error, but maybe not in this case.
read this
https://forum.magicmirror.builders/topic/4231/how-to-add-modules-for-absolute-beginners?_=1589635889121you are asking for people to do the work for you, and not learning… time to learn
-
@sdetweil okay mom lmaoo, and yes, i agree
-
so sensei @sdetweil , i got this.
hecking file... /home/pi/MagicMirror/config/config.js Line 41 col 4 Parsing error: Unexpected token Welcome_messageso does that just mean i should delete that line altogether?
-
@sdetweil wait so it said the options were “string” and “false” for “welcome message” thats where its wrong, so i think its fixed?? ill update if it isnt fixed lol
-
@PHAGE-GOV said in Config Error:
so does that just mean i should delete that line altogether?
no idea… maybe it is an important line,
but as I said, the error is reported on the line after the actual problem
if u read the linked getting started
you would see that elements in config.js are
sometext : somevaluewhere somevalue MUST be quoted before and after (single or double doesn’t matter, as long as both ends are the same)
unless somevalue is true/false, or a numberAND you need to add a continuation char (comma ,) at the end to the line if the next line
is include in this info, or more info is comming (another module config for example) -
@sdetweil yeah ill try that, i tried fixing “string” because it had an extra space in it but i got the no config.js file again, i will try looking for the other stuff rn
-
@PHAGE-GOV said in Config Error:
in it but i got the no config.js file again,
if it has an error in the config, it throws up its hands and says no config…
yes there is one, but he can’t tell what to do -
@PHAGE-GOV I guess you have that part in the alert module.
It needs to be like @sdetweil said. on the left side a single word, here
welcome_message. You need to take care of underlines and the upper-/lowercase.
Then there is a:and then the value which can be a string or false.welcome_message: 'Any string you like'OR
welcome_message: false -
-
@sdetweil Looking at above post, there’s looots of errors in the config.
@PHAGE-GOV we can’t lead you through all of these.
You need to understand how config.js needs to look. Only one comma set false or forgotten breaks the whole file and the mirror. -
@lavolp3 The alert part needs to look like this:
{ module: "alert", position: "right", welcome_message: "a string" }, -
@sdetweil okay so ive been combing through the code, and since i didnt know how to properly edit .json files, i had alot of cleanup to do, im still not done, but getting there. what is a trailing space though? i dont know what to remove
-
-
@PHAGE-GOV ignore the trailing space error. It’s stupid
-
@sdetweil indeed it is, i found it tho, and i fixed everything else too! thank you so much! and i learned so much from this also, i feel much more confident poking around and i defs learned much more about proper coding
-
@PHAGE-GOV and finding your way on the next error. After 3 years I still make them
-
@sdetweil yeah, but npm run config:check was such a life saver
-
one of the biggest tips I can give you is to throw out everything you know about capitalization…
Welcome_messageis different fromwelcome_messageMost of the time, with RARE exception, the initial letter is lowercase.
javacriptIsWeird -
@BKeyport no… it is entirely up to the author of the module what case is used.
there are no rules…only thing is javascript is case sensitive
var foo
is different than
var fOo
etc…the config code doesn’t care, it takes all the settings and makes an object
the module then looks for specific items… almost NEVER checking for case mismatchconfig.foo
will NOT find
config.fOoit is NOT an error to config if fOo is not present.
filenames on linux are also case sensitive
-
@sdetweil That’s effectively what I said… I’m working from within the naming conventions typically used by module authors, including myself, and trying to stress that case is important, because if you come from a world where it’s not (DOS/Windows, perhaps?) it takes some getting used to.
bottom line,
Welcome_messageis not the same aswelcome_message
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