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.

    Tutorials or Overview for Module Dev?

    Scheduled Pinned Locked Moved Development
    6 Posts 4 Posters 5.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.
    • N Offline
      nigel-daniels @nbrenn
      last edited by

      @nbrenn I found it really useful to find a module someone had already written and look at that as an example. I’ve now written a few simple modules that just pull data from web service and display it on screen. Feel free to fork any of them and pull them apart for ideas, the one I just submitted (MMM-AirNow) is pretty basic.

      1 Reply Last reply Reply Quote 3
      • strawberry 3.141S Offline
        strawberry 3.141 Project Sponsor Module Developer
        last edited by

        here is the documentation https://github.com/MichMich/MagicMirror/tree/master/modules

        Please create a github issue if you need help, so I can keep track

        1 Reply Last reply Reply Quote 1
        • yawnsY Offline
          yawns Moderator
          last edited by

          I’d like to jump in as well.
          How do you decide if a node_helper is required or if the module itself is sufficient? Is there any benefit or downside if you choose one way or the other?

          strawberry 3.141S 1 Reply Last reply Reply Quote 0
          • strawberry 3.141S Offline
            strawberry 3.141 Project Sponsor Module Developer @yawns
            last edited by

            @yawns I create only a node_helper if I need to use a npm dependency

            Please create a github issue if you need help, so I can keep track

            1 Reply Last reply Reply Quote 2
            • nbrennN Offline
              nbrenn
              last edited by nbrenn

              Thanks for the responses, guys.

              The E-Monitor API specification has a listing of the supported API methods (page 3), like authenticate, deauthenticate, getCurrentData and so on.

              Aside from Module.register, getStyles, start: function(), and getDom, are these methods listed in the API specification the ones that I will use as functions in my code? For example:

              Module.resgister ("MMM-Emonitor.js", {
              },
              
              getStyles: function() {
              },
              
              start: function() {
              },
              
              getDom: function() {
              },
              
               // And then the EMonitor methods below:
              authenticate: function() { 
              }
              
              deauthenticate: function() {
              }
              
              getCurrentData: function() {
              }
              
              //... and so on down the list of the supported API methods
              
              1 Reply Last reply Reply Quote 0
              • 1 / 1
              • 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