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

site-monitor

v0.3.0

Published

Website monitor

Downloads

6

Readme

Node Site Monitor

A simple node server that will check the status of any number of websites and alert any number of users in different ways.

Why do this??

Well, we wanted a free distributed system for monitoring our websites. We can easily do that with various free node hosting solutions. The different alert types are free and therefore the entire end-to-end check doesn't cost a thing.

Install

npm install site-monitor

OR

git clone git://github.com/hootware/node-site-monitor.git

Usage

Command line

This will use the config.json file

node site-monitor

Code

You can optionally give all the options in the monitor method, or it will use the default config.json

var monitor = require('site-monitor');
monitor(opts) //see sample-config.json for options.

Check types

The different ways that are checked to see the status of a site

  • Check if host is reachable
  • Check HTTP status code
  • Check for connect timeouts
  • Check to see if text on the page matches what is expected

Alert types

The different ways of sending alerts to users. Users can have multiple methods, each with different "availability windows"

  • E-mail:
    • GMail is the only service available at the moment
    • Other providers/SMTP setup coming soon
  • MQTT - MQ Telemetry Transport
    • Supply an array of brokers to connect to
    • Supply a different topic for each user
  • Make your own... just extend the base communication class lib/communication/base.js

Storage types

The different ways to store the site check data and what

  • stdout (console.log)
  • (future) file
  • (future) MySQL
  • (future) MongoDB
  • Make your own... just extend the base communication class lib/storage/base.js

Setup

This is all done in a simple config file. As long as you match the format in the config.json example it will work fine. The arrays in the config don't have any soft limits, so the only limits will be in node or hardware. Let us know if you have any issues. If you want to change the config, you need to restart the application.

Copy the sample-config.json and rename to config.json then start the application.