Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

homebridge-config-ui-x

Package Overview
Dependencies
Maintainers
1
Versions
2065
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

homebridge-config-ui-x

Configuration UI plugin for Homebridge

  • 2.0.0-beta.10
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
7.1K
increased by11.58%
Maintainers
1
Weekly downloads
 
Created
Source

npm

Homebridge Config UI X

This is a plugin for Homebridge

This plugin allows you to monitor, backup and configure your Homebridge server from a browser.

Status

This is a fork of the work originally done by mkellsy/homebridge-config-ui and provides the following improvements:

  • Plugin discovery is improved with support added multiple plugin locations
  • Log display performance improved, now using web sockets to display logs in real time
  • Added option to display logs from journalctl
  • Refactored code with ES6

Installation Instructions

npm install -g --unsafe-perm homebridge-config-ui-x

Configuration

Add this to your homebridge config.json file

"platform":[
    {
      "platform": "config",
      "name": "Config",
      "port": 8080
    }
]

Optional Settings

  • log - The path to the homebridge log. Required if you want to see the process logs in the browser. eg. /var/log/daemon.log
  • restart - The command to run when a restart request is sent from the browser. If not populated it will just terminate the homebridge process.
  • temp - The path to the file that can display your current CPU temperature. eg. /sys/class/thermal/thermal_zone0/temp

Log Viewer Configuration

  • The path to the log file will vary from system to system, check the guide you used to setup the Homebridge process to find where this is.
  • Make sure the user which is running the Homebridge process has the correct permissions to read the log file.
  • The stdout and stderr streams should be logged to the same file. This app only supports reading from a single file.

The log option can alternatively specify a command to spawn that will stream the logs to the client. For example to stream logs from a setup using system.d and journald use this config:

"platform":[
    {
      "platform": "config",
      "name": "Config",
      "port": 8080,
      "log": {
        "tail": "journalctl -o cat -n 100 -f -u homebridge"
      }
    }
]

In this case the user which is running the Homebridge process must have access to read the logs from journalctl.

Initial Run

Once installed you can open the interface at http://localhost:8080. The default username is admin and the default password is admin.

Usage

Status Screen

This shows you that the services are running. It also has your HomeKit pin.

Status

Log Screen

This shows you the rolling log. This is helpful for troubleshooting.

Log

Plugin Screen

This shows you the currently installed plugins and allows you to install, remove and upgrade plugins.

Log

When installing, removing or upgrading plugins the output is show in the browser to help troubleshoot any issues.

Log

Configuration Screen

And finally the configuration screen allows you to modify your Homebridge settings and your platforms and accessories.

Config

Keywords

FAQs

Package last updated on 08 Jan 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc