npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@boozilla/homebridge-shome

v1.2.4

Published

A Homebridge plugin for Samsung Smart Home

Readme

Homebridge sHome

verified-by-homebridge

homebridge-shome is a Homebridge plugin that allows you to integrate devices from the Samsung Smart Home (sHome) platform into Apple HomeKit.

With this plugin, you can control devices connected to Samsung sHome, such as lights, heating, ventilation systems, and door locks, using the Home app and Siri on your Apple devices.

Key Features

  • Light Control: Turn individual lights in each room on or off.
  • Heating Control: Control thermostats in each room individually. Monitor the current temperature and set your desired target temperature.
  • Ventilation System Control: Turn the ventilation system on or off and adjust its fan speed.
  • Digital Door Lock: Check the current state of your door lock (locked/unlocked) and unlock it remotely.
  • Visitor Notifications: Automatically creates a "Visitor Alert" motion sensor in HomeKit. When a new visitor is detected, this sensor is triggered, sending a notification to your Apple devices (if you have notifications enabled for the sensor in the Home app).
  • Parking Notifications: Triggers a "Parking Activity" motion sensor when a vehicle enters or exits the parking lot, allowing you to receive notifications and create automations based on arrivals and departures.
  • Maintenance Fee Alerts: Get notified via a "Maintenance Fee Update" motion sensor as soon as your new monthly maintenance fee statement is available. The plugin features an optimized polling logic to check for updates efficiently.

Installation

If you have a running Homebridge setup, install the plugin using the following command:

npm install -g @boozilla/homebridge-shome

Configuration

Add a new platform to the platforms array in your Homebridge config.json file.

{
  "platforms": [
    {
      "platform": "sHome",
      "name": "sHome",
      "username": "YOUR_SHOME_USERNAME",
      "password": "YOUR_SHOME_PASSWORD",
      "deviceId": "YOUR_MOBILE_DEVICE_ID",
      "pollingInterval": 3000
    }
  ]
}

Configuration Fields

| Key | Description | Required | |:------------------|:--------------------------------------------------------------------------------------------------------------|:---------| | platform | Must be set to "sHome". | Yes | | name | The name of the platform that will appear in the Homebridge logs (e.g., "sHome"). | Yes | | username | Your Samsung sHome account username. | Yes | | password | Your Samsung sHome account password. | Yes | | deviceId | The unique ID of the mobile device where the sHome app is installed. This is required for API authentication. | Yes | | pollingInterval | The interval in milliseconds to poll for device status updates. Set to 0 to disable. | No |

Note: The deviceId can often be found by inspecting the sHome app's internal storage or by using specific tools to retrieve it. A correct value is essential for the API login to succeed.

Disclaimer

This plugin is not officially developed, endorsed, or supported by Samsung. It is a personal project that relies on an unofficial API. The API may change at any time without notice, which could cause this plugin to stop working. Use at your own risk.

License

This project is licensed under the MIT License.