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 🙏

© 2024 – Pkg Stats / Ryan Hefner

autohome

v0.2.11

Published

Fully configurable home automation system.

Downloads

4

Readme

AutoHome - Lightweight home automation

AutoHome is a home automation bus written entirely in ES6 and runs on Node.js. It is easily extendable with so called 'binders' that interface with all kinds of home automation devices, protocols and APIs.

Requirements

AutoHome requires the following software to be installed on your machine:

  • Node.js (6.4.0 or higher)
  • NPM
  • (recommended) Python 2 (for building some binders' dependencies)
  • (recommended) Build tools (base-devel on Arch Linux, build-essentials on Ubuntu, ... for building some binders' dependencies)

Installation

There are multiple ways to install AutoHome.

Tarball (releases)

To install the latest version of AutoHome, get it from here. The latest.tgz will point to the latest version.

To install on *nix, run the following commands:

wget http://autohome.lowijs.io/downloads/latest.tgz
tar xzf latest.tgz
cd autohome
npm install

NPM

It is possible to install AutoHome from NPM. Just run npm install autohome and it will be installed under node_modules in your current directory.

GitHub

Finally, you can clone this repository. That will give you the latest and greatest, but possibly buggy version of AutoHome. When done, run npm install from the autohome directory.

Running AutoHome

AutoHome comes with a default main.json configuration file. This sets up defaults for the port the web server will be listening on, and the log level.

To start AutoHome, run npm start from the AutoHome directory. You can also run node main.js directly.