Skip to content

Installation

Lighthouse is currently in alpha and not yet available in the Obsidian Community Plugins directory. You can install it manually for testing.

  • Obsidian v1.0.0 or later
  • Basic familiarity with Obsidian’s interface
  1. Go to the Lighthouse GitHub Releases page
  2. Download the latest release .zip file
  3. Extract the archive
  4. Copy main.js, manifest.json, and styles.css to your vault:
    YourVault/.obsidian/plugins/lighthouse/
  5. Restart Obsidian
  6. Go to Settings → Community Plugins
  7. Disable Restricted Mode if you haven’t already
  8. Find Lighthouse in your installed plugins and enable it

If you want the latest development version:

  1. Clone the repository:

    Terminal window
    git clone https://github.com/benjamincassidy/lighthouse.git
    cd obsidian-lighthouse
  2. Install dependencies:

    Terminal window
    npm install
  3. Build the plugin:

    Terminal window
    npm run build
  4. Copy the built files to your vault:

    Terminal window
    # Replace /path/to/vault with your actual vault path
    cp main.js manifest.json styles.css /path/to/vault/.obsidian/plugins/lighthouse/
  5. Restart Obsidian and enable the plugin

Once installed and enabled, you should see:

  • A Lighthouse icon in the left ribbon (sidebar)
  • Lighthouse commands available in the Command Palette (Cmd/Ctrl+P)
  • A new Lighthouse section in Settings

Plugin doesn’t appear after installation

Section titled “Plugin doesn’t appear after installation”
  1. Make sure all three files (main.js, manifest.json, styles.css) are in the correct folder
  2. The folder name must be exactly lighthouse (lowercase)
  3. Try restarting Obsidian completely (quit and reopen)
  4. Check that you’ve disabled Restricted Mode in Settings → Community Plugins
  1. Check the Obsidian console (Cmd/Ctrl+Shift+I) for error messages
  2. Ensure you’re running Obsidian v1.0.0 or later
  3. Try reinstalling the plugin files
  4. Report persistent issues on GitHub Issues

Now that Lighthouse is installed, let’s create your first project! Continue to Quick Start.