MagicMirror² DocsMagicMirror² Docs
Donate
Discord
Forum
GitHub
Donate
Discord
Forum
GitHub
  • Getting Started

    • Introduction
    • Requirements
    • Installation & Usage
    • Upgrade Guide
  • Configuration

    • Introduction
    • Autostart your MagicMirror²
    • Raspberry Specific
  • Modules

    • Introduction
    • Module Configuration
    • Default Modules

      • Alert
      • Calendar
      • Clock
      • Compliments
      • Hello World
      • News Feed
      • Update Notification
      • Weather Module
    • Animation Guide
  • Module Development

    • Introduction
    • The Core module file
    • The Node Helper
    • MagicMirror Helper Methods
    • Logger
    • Notifications
    • Weather Module Weather Provider Development
    • How to write good documentation
  • About

    • MagicMirror² Manifesto
    • Contributing Guidelines
    • Donate
    • Support
    • License

Hello World

The helloworld module is one of the default modules of the MagicMirror. It is a simple way to display a static text on the mirror.

Using the module

To use this module, add it to the modules array in the config/config.js file:

modules: [
  {
    module: "helloworld",
    position: "bottom_bar", // This can be any of the regions.
    config: {
      // See 'Configuration options' for more information.
      text: "Hello world!",
    },
  },
];

Configuration options

The following properties can be configured:

OptionDescription
textThe text to display.

Example: 'Hello world!'
Default value: 'Hello world!'
Help us improve this page!
Last Updated:: 6/9/25, 5:54 PM
Prev
Compliments
Next
News Feed