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 🙏

© 2026 – Pkg Stats / Ryan Hefner

homebridge-commax-switch

v0.3.1

Published

Commax Home Automation Switch for Homebridge

Readme

homebridge-commax-switch

Commax 월패드의 Homebridge plugin 입니다. 아래의 조건이 만족하여야 사용이 가능 합니다.

  • Commax 의 월패드가 Ruvie 사이트를 지원하여야 한다.
  • Ruvie 사이트에 접속하여 웹페이지 소스보기를 하여 Commax 서버의 ip 와 우리집의 ip 를 알아낼수 있어야 한다. (차후 이 페이지를 통해 설명함)

컨트롤 가능한 디바이스

  • Commax 월패드로 On/Off 가능한 전등 스위치 (light)
  • Commax 월패드로 off 가능한 가스밸브 스위치 (gas)

Installation

$ sudo npm install -g --unsafe-perm homebridge-commax-switch

Homebridge Config.json

"accessories": [
        {
            "accessory": "CommaxSwitch",
            "name": "전등 1",
            "commax_ip": "14.x.x.x",
            "home_ip": "10.x.x.x",
            "device": "light",
            "device_id": 1,
            "interval": 5000
        },
        {
            "accessory": "CommaxSwitch",
            "name": "전등 2",
            "commax_ip": "14.x.x.x",
            "home_ip": "10.x.x.x",
            "device": "light",
            "device_id": 2,
            "interval": 5000
        },
        {
            "accessory": "CommaxSwitch",
            "name": "가스밸브",
            "commax_ip": "14.x.x.x",
            "home_ip": "10.x.x.x",
            "device": "gas",
            "device_id": 3,
            "interval": 5000
        }
    ]

| Config | Value | Required | Default | | ------ | ----- | ----- | ----- | | name | 스위치에 사용할 이름 | true | | | commax_ip | Commax 서버 ip | true | | | home_ip | Commax 에 등록된 우리집 ip | true | | | device | 스위치의 종류 ( light / gas 만 사용가능) | true | | | device_id | 스위치의 id (숫자) | true | | | interval | 스위치의 현재 상태를 모니터링하는 시간 (단위 millisecond) | false | 1000 | | manufacturer | 제조사명 | false | DefaultManufacturer | | model | 모델명 | false | DefaultModel | | serialnumber | 시리얼넘버 | false | DefaultSerialnumber |

Commax 서버 IP 와 우리집 IP 를 알아내는 법

우선 http://www.ruvie.co.kr 사이트에 접속을 합니다.

Alt text

사이트에 접속을 하셨으면

상단의 홈스토리(HOME STORY) 메뉴에 들어가셔서 왼쪽에 홈제어 메뉴를 클릭합니다.

Alt text

상단 브라우저에 보이는 주소가 commax_ip 입니다.

위의 화면에서 크롬에서 소스보기를 합니다.

Alt text

소스중에 하일라이트 된 부분을 보시면 보이는 주소가 home_ip 입니다.