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

@winkgroup/network

v3.0.9

Published

Helper class to manage network state

Downloads

24

Readme

network

Network library is an utility library that can be used to retrieve your public ip, check your ports are opened, receive events when you are disconnected from internet and much more.

Install

npm install @winkgroup/network

Usage

import Network from '@winkgroup/network';

const network = Network.get();

// this will work only if you periodically run "cron" method as described below
network.emit( 'online', () => console.log('you are online') );
network.emit( 'offline', () => console.log('you are offline') );

/**
 *  Required to dynamically detect if you are connected or not.
 *  This can be useful when you want your application is running on a laptop or any other device that
 *  can lost internet connection (like some poor hosting services) and react based on that
 */
setInterval( () => {
    network.cron();
}, 1000);

Methods

-> static async findFirstAvailablePort(startingPort: number, host: string, excluded?: number[]) => number | null

-> static async getInfo(force = false) => { interfaceIp, publicIp, hasInternetAccess, sshAccess }

-> static getNetworkInterfaceIp() => string | null

find the find the first ip that is not a loopback interface

-> static async getPublicBaseUrl(publicBaseUrlTemplate: string, inputOptions?: Partial<{ force: boolean; port: number }>)

const network = Network.get()

// supposing your publicIp is 93.47.76.66...
async function printEndpoint() {
    const publicBaseUrl = await network.getPublicBaseUrl('https://{{IP}}:{{PORT}}', { port: 8080 });
    console.log('my endpoint will be', publicBaseUrl + '/myService'); // https://93.47.76.66:8080/myService
}

printEndpoint()

-> static async getPublicIp(force = false, timeout = 20000) => string | ''

get your public ip using https://httpbin.org/ip

-> static getRouter()

helper function to expose this functions as endpoints in a web service. Here the list (endpoint => function name):

  • GET /info => getInfo you can run testWebservice and check the code to have an idea of how it can work:
npm run testWebservice

you will need ts-node-dev installed

-> async hasInternetAccess(force = false) => boolean

-> static async isPortOpened(port: number, host: string, timeout = 10000) => boolean

you can check on localhost( host = 127.0.0.1 ), remote hosts or public interfaces

Tips & Tricks

  • @types/express is required to be in dependencies, not just a devDependencies beacause type Router is required in js built script
  • network uses WiNKgroup console-log to manage messages like when you are online or not. You can manage how much verbose you want to be or if need to write those messages on a file overwriting consoleLog attribute:
import Network from '@winkgroup/network';
import ConsoleLog from '@winkgroup/console-log';

Network.consoleLog = new ConsoleLog({ prefix: 'MyPreciousLog' });
...

Maintainers