• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
MagicMirror Forum
  • Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.

MMM-bergfex not working

Scheduled Pinned Locked Moved Troubleshooting
mmm-bergfexbergfexsnow
38 Posts 5 Posters 9.0k Views 5 Watching
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • M Offline
    MajorC Project Sponsor
    last edited by Sep 27, 2020, 3:33 PM

    I can open the developers console without mmm-bergfex in the config and will see a couple of entries, no errors.

    As soon as I include mmm-bergfex in the config, the developers console says: DevTool was disconnected from the page. Once page is reloaded, DevTools will automatically reconnect.

    S 1 Reply Last reply Sep 27, 2020, 3:35 PM Reply Quote 0
    • S Offline
      sdetweil @MajorC
      last edited by Sep 27, 2020, 3:35 PM

      @MajorC ok, look in the window where you start MM, npm start or pm2 ,
      if pm2 the pm2 logs --lines=???
      where ??? is a number, 15 is the default

      to get to the window if MM is showing, alt-spacebar, n

      Sam

      How to add modules

      learning how to use browser developers window for css changes

      1 Reply Last reply Reply Quote 0
      • M Offline
        MajorC Project Sponsor
        last edited by MajorC Sep 27, 2020, 3:44 PM Sep 27, 2020, 3:43 PM

        /home/pi/.pm2/logs/MagicMirror-error.log last 15 lines:
        0|MagicMir |     at Object.<anonymous> (/home/pi/MagicMirror/modules/MMM-bergfex/node_helper.js:11:13)
        0|MagicMir |     at Module._compile (internal/modules/cjs/loader.js:786:30)
        0|MagicMir |     at Object.Module._extensions..js (internal/modules/cjs/loader.js:798:10)
        0|MagicMir |     at Module.load (internal/modules/cjs/loader.js:645:32) {
        0|MagicMir |   code: 'MODULE_NOT_FOUND',
        0|MagicMir |   requireStack: [
        0|MagicMir |     '/home/pi/MagicMirror/modules/MMM-bergfex/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
        0|MagicMir |   ]
        0|MagicMir | }
        0|MagicMir | [2020-09-27 17:30:56.629] [ERROR]  MagicMirror will not quit, but it might be a good idea to check why this happened. Maybe no internet connection?
        0|MagicMir | [2020-09-27 17:30:56.630] [ERROR]  If you think this really is an issue, please open an issue on GitHub: https://github.com/MichMich/MagicMirror/issues
        
        
        
        S 1 Reply Last reply Sep 27, 2020, 3:44 PM Reply Quote 0
        • S Offline
          sdetweil @MajorC
          last edited by Sep 27, 2020, 3:44 PM

          @MajorC looks like you didn’t do the npm install in the module folder after cloning

          Sam

          How to add modules

          learning how to use browser developers window for css changes

          M 1 Reply Last reply Sep 27, 2020, 3:48 PM Reply Quote 0
          • M Offline
            MajorC Project Sponsor @sdetweil
            last edited by MajorC Sep 27, 2020, 3:50 PM Sep 27, 2020, 3:48 PM

            @sdetweil

            
            pi@MagicMirror:~/MagicMirror/modules/MMM-bergfex $ npm install cheerio
            npm WARN MMM-bergfex@ license should be a valid SPDX license expression
            
            + cheerio@1.0.0-rc.3
            updated 1 package and audited 65 packages in 5.877s
            
            2 packages are looking for funding
              run `npm fund` for details
            
            found 0 vulnerabilities
            
            pi@MagicMirror:~/MagicMirror/modules/MMM-bergfex $ npm install
            npm WARN MMM-bergfex@ license should be a valid SPDX license expression
            
            audited 65 packages in 2.257s
            
            2 packages are looking for funding
              run `npm fund` for details
            
            found 0 vulnerabilities
            
            pi@MagicMirror:~/MagicMirror/modules/MMM-bergfex $
            
            

            I just did it again, but I am quite sure I already did it before.

            S 1 Reply Last reply Sep 27, 2020, 3:51 PM Reply Quote 0
            • S Offline
              sdetweil @MajorC
              last edited by sdetweil Sep 27, 2020, 3:51 PM Sep 27, 2020, 3:51 PM

              @MajorC sadly he didn’t update package.json with all the required modules

              do
              npm install async --save
              npm install sys – save

              his code

              var async = require('async');
              var sys = require('sys');
              var exec = require('child_process').exec;
              const request = require('request');
              const cheerio = require("cheerio");
              

              Sam

              How to add modules

              learning how to use browser developers window for css changes

              M 1 Reply Last reply Sep 27, 2020, 3:52 PM Reply Quote 0
              • M Offline
                MajorC Project Sponsor @sdetweil
                last edited by Sep 27, 2020, 3:52 PM

                @sdetweil said in MMM-bergfex not working:

                npm install async --save
                npm install sys – save

                in the MMM-bergfex folder?

                S 1 Reply Last reply Sep 27, 2020, 3:52 PM Reply Quote 0
                • S Offline
                  sdetweil @MajorC
                  last edited by Sep 27, 2020, 3:52 PM

                  @MajorC of course

                  Sam

                  How to add modules

                  learning how to use browser developers window for css changes

                  1 Reply Last reply Reply Quote 0
                  • M Offline
                    MajorC Project Sponsor
                    last edited by Sep 27, 2020, 3:54 PM

                    sorry, I am totaly new to this world, my first Raspberry project.

                    
                    pi@MagicMirror:~/MagicMirror/modules/MMM-bergfex $ npm install async --save
                    npm WARN MMM-bergfex@ license should be a valid SPDX license expression
                    
                    + async@3.2.0
                    added 1 package from 1 contributor and audited 66 packages in 2.709s
                    
                    2 packages are looking for funding
                      run `npm fund` for details
                    
                    found 0 vulnerabilities
                    
                    pi@MagicMirror:~/MagicMirror/modules/MMM-bergfex $ npm install sys -- save
                    npm WARN MMM-bergfex@ license should be a valid SPDX license expression
                    
                    + sys@0.0.1
                    + save@2.4.0
                    added 13 packages from 11 contributors and audited 79 packages in 8.763s
                    
                    2 packages are looking for funding
                      run `npm fund` for details
                    
                    found 0 vulnerabilities
                    
                    pi@MagicMirror:~/MagicMirror/modules/MMM-bergfex $
                    
                    
                    S 1 Reply Last reply Sep 27, 2020, 3:55 PM Reply Quote 0
                    • S Offline
                      sdetweil @MajorC
                      last edited by Sep 27, 2020, 3:55 PM

                      @MajorC and then start mm

                      Sam

                      How to add modules

                      learning how to use browser developers window for css changes

                      1 Reply Last reply Reply Quote 0
                      • 1
                      • 2
                      • 3
                      • 4
                      • 1 / 4
                      1 / 4
                      • First post
                        7/38
                        Last post
                      Enjoying MagicMirror? Please consider a donation!
                      MagicMirror created by Michael Teeuw.
                      Forum managed by Sam, technical setup by Karsten.
                      This forum is using NodeBB as its core | Contributors
                      Contact | Privacy Policy