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

is-online-emitter

v3.0.0

Published

⚡️ Emitter interface for gain and loss of Internet connectivity.

Downloads

155

Readme

is-online-emitter

Emitter interface for gain and loss of Internet connectivity.

Build Status CodeFactor

Current version: 3.0.0

📋 Table of contents

🚀 Install

npm install is-online-emitter --save

🔖 Features

  • Monitors Internet connectivity and notifies you of connectivity changes.
  • Monitors for changes on network interfaces to automatically trigger connectivity checks.
  • Uses fibonacci back-off to periodically check for Internet connectivity.
  • Supports Internet connectivity checks using a HTTP(S) proxy.

🔰 Description

This library allows developers and system administrators to be alerted upon connectivity changes to the public Internet. This can be useful if your applications is connectivity sensitive and needs to be alerted as soon as possible of a loss/gain of Internet connectivity. To do so, the IsOnlineEmitter class provided by this library implements an EventEmitter interface dedicated to the event delivery.

This project is based on the is-online library and adds an event interface on top of it in order to asynchronously notify your applications of gain and loss of Internet connectivity.

Note that it can take up to 10 seconds with the default parameters to receive a notification about an Internet connectivity change once it has effectively changed.

🛠 Usage

In order to use this library you need to instantiate it, subscribe to the events you are interested in and start the connectivity montoring.

import IsOnlineEmitter from 'is-online-emitter';

// Creating a new instance of the emitter.
const emitter = new IsOnlineEmitter({});
// Listening to `connectivity.change` events.
emitter.on('connectivity.change', console.log);
// Starting the connectivity monitoring.
emitter.start();

See the examples directory for more information on how to use the library.

Configuration

Different configuration variables can be passed to this library when instanciating it in order to customize its behavior. Below is a list of the defined variables associated with their description.

Variable | Type | Description -------- | ---- | ----------- backOffInitialDelay | Number | The initial delay, in milliseconds, used by the used back-off strategy to trigger connectivity checks. backOffMaxDelay | Number | The maximum delay, in milliseconds, used by the used back-off strategy to trigger connectivity checks. connectionTimeout | Number | The connection timeout, in milliseconds, used when issuing requests to external services during the connectivity check.

Events

Different events are emitted by the IsOnlineEmitter class which are described below.

Event | Description ------------------------------ | ----------- connectivity.change | A change of state in Internet connectivity has been detected. Note that this event will be initially fired when you call the .start() method of the emitter. network.interface.change | A change of state in the network interfaces of the host has been detected. The payload associated with this event provides details on the state change. connectivity.check.scheduled | Fired when a connectivity check is being scheduled by the fibonacci back-off mechanism. The delay before the next check will be provided as a payload.

Proxy Support

To make it work through proxies, you need to set up global-agent.

See the using-http-proxies directory for an example on how to use HTTP(S) proxies with the is-online-emitter library.

👀 See also

  • The is-online library on which this project is based.