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.

    Cannot find module "moment"

    Scheduled Pinned Locked Moved Troubleshooting
    98 Posts 2 Posters 54.4k Views 2 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.
    • S Do not disturb
      sdetweil @uok825
      last edited by sdetweil

      @uok825 said in Cannot find module "moment":

      Now i am working on LICE module. I am changed that module code.

      ok, I was looking at the original code and couldn’t find a useful line 27

      typically $ is jquery
      but the module doesn’t say it needs it…
      no package.json for dependencies and the node_helper doesn’t require it

      Sam

      How to add modules

      learning how to use browser developers window for css changes

      U 1 Reply Last reply Reply Quote 0
      • U Offline
        uok825 @sdetweil
        last edited by

        @sdetweil

        /* Magic Mirror
         * Module: MMM-LICE
         *
         * By Mykle1
         *
         */
        const NodeHelper = require('node_helper');
        const request = require('request');
        const $ = require('cheerio');
        
        
        module.exports = NodeHelper.create({
        
            start: function() {
                console.log("Starting node_helper for: " + this.name);
            },
        
            getLICE: function(url) {
        		
            request({
                url: 'https://kur.altin.in/banka',
                method: 'GET'
            }, (error, response, body) => {
        		
                if (!error && response.statusCode == 200) {
        			var arr = []
                    var result = ($('.fiyat',body));
                    result.each((_id,el) =>  (arr.push(el.children[0]['data'])))
                    var result = ($('h2[id=gfiy]',body));
                    result.each((_id,el) =>  (arr.push(el.children[0]['data'])))
                    this.sendSocketNotification('LICE_RESULT', arr);
        
                }
        
            });
        },
        
            socketNotificationReceived: function(notification, payload) {
                if (notification === 'GET_LICE') {
                    this.getLICE(payload);
                }
            }
        });
        
        
        S 1 Reply Last reply Reply Quote 0
        • S Do not disturb
          sdetweil @uok825
          last edited by

          @uok825 yep, that’ll do it…

          npm install cheerio

          my updater would have fixed all this IF there was a package.json file that documented the dependencies

          npm install request cheerio --save

          Sam

          How to add modules

          learning how to use browser developers window for css changes

          U 1 Reply Last reply Reply Quote 0
          • U Offline
            uok825 @sdetweil
            last edited by

            @sdetweil Thanks man. You are the best. https://github.com/uok825/MagicMirror/tree/master/modules/MMM-LICE

            S 1 Reply Last reply Reply Quote 0
            • S Do not disturb
              sdetweil @uok825
              last edited by sdetweil

              @uok825 in the module folder do
              npm init

              answer the questions as best u can, ignore them if u can’t

              then
              npm install request cheerio --save

              then update your git repo with the new package.json file

              Sam

              How to add modules

              learning how to use browser developers window for css changes

              U 1 Reply Last reply Reply Quote 0
              • U Offline
                uok825 @sdetweil
                last edited by

                @sdetweil Now im doing the npm install request cheerio --save . Should I continue or cancel?

                S 1 Reply Last reply Reply Quote 0
                • S Do not disturb
                  sdetweil @uok825
                  last edited by

                  @uok825 continue

                  might not create a package.json if not one

                  redo after the npm init

                  Sam

                  How to add modules

                  learning how to use browser developers window for css changes

                  U 1 Reply Last reply Reply Quote 0
                  • U Offline
                    uok825 @sdetweil
                    last edited by

                    @sdetweil
                    Still same

                    pi@raspberrypi:~/MagicMirror/modules/MMM-LICE $ pm2 logs
                    [TAILING] Tailing last 15 lines for [all] processes (change the value with --lines option)
                    /home/pi/.pm2/pm2.log last 15 lines:
                    PM2        | 2021-07-26T02:05:51: PM2 log: App [MagicMirror:0] starting in -fork mode-
                    PM2        | 2021-07-26T02:05:52: PM2 log: App [MagicMirror:0] online
                    
                    /home/pi/.pm2/logs/MagicMirror-error.log last 15 lines:
                    0|MagicMir | [26.07.2021 02:06.21.033] [WARN]  The module 'currentweather' is deprecated in favor of the 'weather'-module, please refer to the documentation for a migration path
                    0|MagicMir | [26.07.2021 02:06.21.065] [WARN]  The module 'weatherforecast' is deprecated in favor of the 'weather'-module, please refer to the documentation for a migration path
                    
                    /home/pi/.pm2/logs/MagicMirror-out.log last 15 lines:
                    0|MagicMir | [26.07.2021 02:06.21.048] [LOG] Connecting socket for: weatherforecast
                    0|MagicMir | [26.07.2021 02:06.21.074] [LOG] Connecting socket for: newsfeed
                    0|MagicMir | [26.07.2021 02:06.21.090] [LOG] Starting node helper for: newsfeed
                    0|MagicMir | [26.07.2021 02:06.21.102] [LOG] Connecting socket for: MMM-cryptocurrency
                    0|MagicMir | [26.07.2021 02:06.21.112] [LOG] Cryptocurrency module loaded!
                    0|MagicMir | [26.07.2021 02:06.21.128] [LOG] Connecting socket for: MMM-MyPrayerTimes
                    0|MagicMir | [26.07.2021 02:06.21.144] [LOG] Starting node_helper for: MMM-MyPrayerTimes
                    0|MagicMir | [26.07.2021 02:06.21.159] [LOG] Connecting socket for: MMM-LICE
                    0|MagicMir | [26.07.2021 02:06.21.174] [LOG] Starting node_helper for: MMM-LICE
                    0|MagicMir | [26.07.2021 02:06.21.187] [LOG] Connecting socket for: MMM-PIR
                    0|MagicMir | [26.07.2021 02:06.21.202] [LOG] Starting module helper: MMM-PIR
                    0|MagicMir | [26.07.2021 02:06.21.211] [LOG] Sockets connected & modules started ...
                    0|MagicMir | [26.07.2021 02:06.21.221] [LOG]
                    0|MagicMir | Ready to go! Please point your browser to: http://0.0.0.0:8080
                    0|MagicMir | Starting chromium browser now, have patience, it takes a minute
                    
                    0|MagicMirror  | [26.07.2021 02:08.03.737] [LOG]
                    0|MagicMirror  | Create new calendarfetcher for url: https://calendar.google.com/calendar/ical/10s0ee0h3tb1ko7fqhpf71sfgs%40group.calendar.google.com/private-d3794e10c136ecfea3ad72fe63078acd/basic.ics - Interval: 300000
                    0|MagicMirror  | [26.07.2021 02:08.05.785] [LOG]
                    0|MagicMirror  | Create new newsfetcher for url: https://www.cnnturk.com/feed/rss/turkiye/news - Interval: 300000
                    0|MagicMirror  | [26.07.2021 02:08.07.210] [LOG]
                    0|MagicMirror  | Create new newsfetcher for url: https://www.birgun.net/xml/rss.xml - Interval: 300000
                    0|MagicMirror  | [26.07.2021 02:08.15.652] [ERROR]
                    0|MagicMirror  | Whoops! There was an uncaught exception...
                    0|MagicMirror  | [26.07.2021 02:08.15.761] [ERROR]
                    0|MagicMirror  | TypeError: $ is not a function
                    0|MagicMirror  |     at Request.request [as _callback] (/home/pi/MagicMirror/modules/MMM-LICE/node_helper.js:27:27)
                    0|MagicMirror  |     at Request.self.callback (/home/pi/MagicMirror/modules/MMM-LICE/node_modules/request/request.js:185:22)
                    0|MagicMirror  |     at Request.emit (events.js:198:13)
                    0|MagicMirror  |     at Request.<anonymous> (/home/pi/MagicMirror/modules/MMM-LICE/node_modules/request/request.js:1154:10)
                    0|MagicMirror  |     at Request.emit (events.js:198:13)
                    0|MagicMirror  |     at IncomingMessage.<anonymous> (/home/pi/MagicMirror/modules/MMM-LICE/node_modules/request/request.js:1076:12)
                    0|MagicMirror  |     at Object.onceWrapper (events.js:286:20)
                    0|MagicMirror  |     at IncomingMessage.emit (events.js:203:15)
                    0|MagicMirror  |     at endReadableNT (_stream_readable.js:1145:12)
                    0|MagicMirror  |     at process._tickCallback (internal/process/next_tick.js:63:19)
                    0|MagicMirror  | [26.07.2021 02:08.15.803] [ERROR] MagicMirror will not quit, but it might be a good idea to check why this happened. Maybe no internet connection?
                    0|MagicMirror  | [26.07.2021 02:08.15.842] [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 Reply Quote 0
                    • S Do not disturb
                      sdetweil @uok825
                      last edited by

                      @uok825 did cheerio get installed?

                      cd ~/MagicMirror/modules/MMM-LICE
                      ls node_modules/cheerio 
                      

                      Sam

                      How to add modules

                      learning how to use browser developers window for css changes

                      U 1 Reply Last reply Reply Quote 0
                      • U Offline
                        uok825 @sdetweil
                        last edited by

                        @sdetweil

                        
                        pi@raspberrypi:~ $ cd ~/MagicMirror/modules/MMM-LICE
                        pi@raspberrypi:~/MagicMirror/modules/MMM-LICE $ ls node_modules/cheerio
                        LICENSE  lib  package.json  Readme.md
                        pi@raspberrypi:~/MagicMirror/modules/MMM-LICE $
                        
                        
                        S 2 Replies Last reply Reply Quote 0
                        • S Do not disturb
                          sdetweil @uok825
                          last edited by

                          @uok825 hm… I use it so it should be easy…

                          Sam

                          How to add modules

                          learning how to use browser developers window for css changes

                          1 Reply Last reply Reply Quote 0
                          • S Do not disturb
                            sdetweil @uok825
                            last edited by sdetweil

                            @uok825 do u need that set of parents in front of $

                            ($('.....'))
                            

                            Sam

                            How to add modules

                            learning how to use browser developers window for css changes

                            U 1 Reply Last reply Reply Quote 0
                            • U Offline
                              uok825 @sdetweil
                              last edited by

                              @sdetweil Deleted parents but still same.

                              0|MagicMirror  | [26.07.2021 13:25.47.639] [ERROR]
                              0|MagicMirror  | Whoops! There was an uncaught exception...
                              0|MagicMirror  | [26.07.2021 13:25.47.741] [ERROR]
                              0|MagicMirror  | TypeError: $ is not a function
                              0|MagicMirror  |     at Request.request [as _callback] (/home/pi/MagicMirror/mod                                                                                                             ules/MMM-LICE/node_helper.js:27:26)
                              0|MagicMirror  |     at Request.self.callback (/home/pi/MagicMirror/modules/MMM-                                                                                                             LICE/node_modules/request/request.js:185:22)
                              0|MagicMirror  |     at Request.emit (events.js:198:13)
                              0|MagicMirror  |     at Request.<anonymous> (/home/pi/MagicMirror/modules/MMM-LI                                                                                                             CE/node_modules/request/request.js:1154:10)
                              0|MagicMirror  |     at Request.emit (events.js:198:13)
                              0|MagicMirror  |     at IncomingMessage.<anonymous> (/home/pi/MagicMirror/module                                                                                                             s/MMM-LICE/node_modules/request/request.js:1076:12)
                              0|MagicMirror  |     at Object.onceWrapper (events.js:286:20)
                              0|MagicMirror  |     at IncomingMessage.emit (events.js:203:15)
                              0|MagicMirror  |     at endReadableNT (_stream_readable.js:1145:12)
                              0|MagicMirror  |     at process._tickCallback (internal/process/next_tick.js:63:                                                                                                             19)
                              0|MagicMirror  | [26.07.2021 13:25.47.770] [ERROR]
                              0|MagicMirror  | MagicMirror will not quit, but it might be a good idea to check                                                                                                              why this happened. Maybe no internet connection?
                              0|MagicMirror  | [26.07.2021 13:25.47.788] [ERROR] If you think this really is a                                                                                                             n issue, please open an issue on GitHub: https://github.com/MichMich/MagicMirror                                                                                                             /issues
                              
                              
                              
                              S 1 Reply Last reply Reply Quote 0
                              • S Do not disturb
                                sdetweil @uok825
                                last edited by sdetweil

                                @uok825 weird. never seen such a thing

                                can u try changing the $ to zz

                                in the require and where used.

                                $ is usually used for jQuery

                                Sam

                                How to add modules

                                learning how to use browser developers window for css changes

                                U 1 Reply Last reply Reply Quote 0
                                • U Offline
                                  uok825 @sdetweil
                                  last edited by

                                  @sdetweil I just rebuild the module without using request.

                                  S 1 Reply Last reply Reply Quote 0
                                  • S Do not disturb
                                    sdetweil @uok825
                                    last edited by

                                    @uok825 ok, but THAT also make no sense…

                                    Sam

                                    How to add modules

                                    learning how to use browser developers window for css changes

                                    U 1 Reply Last reply Reply Quote 0
                                    • U Offline
                                      uok825 @sdetweil
                                      last edited by uok825

                                      @sdetweil Hi there! Problem solved. New code:

                                      /* Magic Mirror
                                       * Module: MMM-LICE
                                       *
                                       * By Mykle1
                                       *
                                       */
                                      const NodeHelper = require('node_helper');
                                      const request = require('request');
                                      const cheerio = require('cheerio');
                                      
                                      
                                      module.exports = NodeHelper.create({
                                      
                                          start: function() {
                                              console.log("Starting node_helper for: " + this.name);
                                          },
                                      
                                          getLICE: function(url) {
                                      		
                                          request({
                                              url: 'https://kur.altin.in/banka',
                                              method: 'GET'
                                          }, (error, response, body) => {
                                      		
                                              if (!error && response.statusCode == 200) {
                                                  const $ = cheerio.load(body);
                                      			var arr = []
                                                  var result = $('.fiyat');
                                                  result.each((_id,el) =>  (arr.push(el.children[0]['data'])))
                                                  var result = $('h2[id=gfiy]');
                                                  result.each((_id,el) =>  (arr.push(el.children[0]['data'])))
                                                  this.sendSocketNotification('LICE_RESULT', arr);
                                      
                                              }
                                      
                                          });
                                      },
                                      
                                          socketNotificationReceived: function(notification, payload) {
                                              if (notification === 'GET_LICE') {
                                                  this.getLICE(payload);
                                              }
                                          }
                                      });
                                      
                                      

                                      But i have an another problem. Turkish characters in the news seem broken. I think there is a utf-8 error but it doesn’t write anything in the logs.
                                      Edit: The news site is broken, it’s not a mistake about us.

                                      S 1 Reply Last reply Reply Quote 1
                                      • S Do not disturb
                                        sdetweil @uok825
                                        last edited by

                                        @uok825 maybe u have to pass a header in the request for utf8 formated response, or encoded…

                                        Sam

                                        How to add modules

                                        learning how to use browser developers window for css changes

                                        1 Reply Last reply Reply Quote 0

                                        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
                                        • 1
                                        • 2
                                        • 3
                                        • 4
                                        • 5
                                        • 5 / 5
                                        • First post
                                          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