MM Noob here, new winstall of MM, works fine, will just with the default modules. I tried to install a 3rd-party module, MMM-CountEvents (https://github.com/MMRIZE/MMM-CountEvents) followed instructions. The default modules display but not this one. Rebooted, why not, at least I know MM will restart and re-read for sure. I even simplified my config (below) nope still not working. Logs are clean, ran npm run config:check no errors. Even tried other 3rd party modules with no success. Suggestions?
let config = {
        address: "0.0.0.0",
        port: 8080,
        basePath: "/",
        ipWhitelist: [],
        useHttps: false,
        httpsPrivateKey: "",
        httpsCertificate: "",
        language: "en",
        locale: "en-US",
        logLevel: ["INFO", "LOG", "WARN", "ERROR"],
        timeFormat: 12,
        units: "imperial",
        serverOnly:  true,
        modules: [
                {
                        module: "alert",
                },
                {
                        module: "updatenotification",
                        position: "top_bar"
                },
                {
                        module: "clock",
                        position: "top_left"
                },
                {
                  module: "MMM-CountEvents",
                  position: "top_left",
                  config: {
                    events: [
                      {
                        title: "Travel to Paris",
                        targetTime: "21 Nov 2022",
                      },
                    ]
                  }
                },
                {
                    module: "helloworld",
                    position: "bottom_bar", // This can be any of the regions.
                    config: {
                                      // See 'Configuration options' for more information.
                                      text: "I like cheeeezzeee!",
                    },
                  },
        ]
};
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") {module.exports = config;}