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

stats-peerconnection

v0.2.2

Published

sequentPromises resolves Promises sequentially

Downloads

20

Readme

stats-peerconnection

npm npm bundle size

Collection of statistics from peerConnection

Install

npm

npm install stats-peerconnection

yarn

yarn add stats-peerconnection

Usage

import StatsPeerConnection from '@vinteo/stats-peerconnection';

const handleCollectStatistics = (statistics) => {};

const statsPeerConnection = new StatsPeerConnection();

const startCollect = (peerConnection: RTCPeerConnection) => {
  resetCollect();
  statsPeerConnection.start(peerConnection);
  statsPeerConnection.onCollected(handleCollectStatistics);
};

const resetCollect = () => {
  statsPeerConnection.reset();
};

const stopCollect = () => {
  statsPeerConnection.stop();
  statsPeerConnection.offCollected(handleCollectStatistics);
};

const restart = (peerConnection: RTCPeerConnection) => {
  stopCollect();
  resetCollect();
  startCollect(peerConnection);
};

Example of received data from

{
  "OUTBOUND_AUDIO_TYPE": [
    {
      "id": "RTCOutboundRTPAudioStream_7680843",
      "type": "OUTBOUND_AUDIO_TYPE",
      "trackIdentifier": "531c455c-ff2d-4001-ac80-0b336598b32a",
      "_values": [
        {
          "key": "timestamp",
          "value": "1642515711347.853"
        },
        {
          "key": "packetsSent",
          "value": "4852"
        },
        {
          "key": "codec",
          "value": "audio/opus"
        },
        {
          "key": "bitrate",
          "value": "53kbps"
        }
      ]
    }
  ],
  "INBOUND_AUDIO_TYPE": [
    {
      "id": "RTCInboundRTPAudioStream_1094410902",
      "type": "INBOUND_AUDIO_TYPE",
      "trackIdentifier": "5ef6f97b-0435-4c8b-9a7c-0b29ede244f5",
      "_values": [
        {
          "key": "timestamp",
          "value": "1642515711347.853"
        },
        {
          "key": "packetsReceived",
          "value": "4842"
        },
        {
          "key": "packetsLost",
          "value": "10"
        },
        {
          "key": "percentagePacketsLost",
          "value": "0.2%"
        },
        {
          "key": "percentagePacketsLostRecent",
          "value": "0%"
        },
        {
          "key": "codec",
          "value": "audio/opus"
        },
        {
          "key": "bitrate",
          "value": "65kbps"
        }
      ]
    }
  ],
  "OUTBOUND_VIDEO_TYPE": [
    {
      "id": "RTCOutboundRTPVideoStream_2989932149",
      "type": "OUTBOUND_VIDEO_TYPE",
      "trackIdentifier": "f9b8b710-92fc-4d01-9faf-e09f7c519f7c",
      "_values": [
        {
          "key": "timestamp",
          "value": "1642515711347.853"
        },
        {
          "key": "packetsSent",
          "value": "15985"
        },
        {
          "key": "codec",
          "value": "video/H264"
        },
        {
          "key": "bitrate",
          "value": "1123kbps"
        },
        {
          "key": "resolution",
          "value": "1280x720"
        }
      ]
    }
  ],
  "INBOUND_VIDEO_TYPE": [
    {
      "id": "RTCInboundRTPVideoStream_153525536",
      "type": "INBOUND_VIDEO_TYPE",
      "trackIdentifier": "8c643655-8ba5-438a-b3e3-0998bc154c71",
      "_values": [
        {
          "key": "timestamp",
          "value": "1642515711347.853"
        },
        {
          "key": "packetsReceived",
          "value": "1281"
        },
        {
          "key": "packetsLost",
          "value": "5"
        },
        {
          "key": "percentagePacketsLost",
          "value": "0.4%"
        },
        {
          "key": "percentagePacketsLostRecent",
          "value": "2%"
        },
        {
          "key": "codec",
          "value": "video/H264"
        },
        {
          "key": "bitrate",
          "value": "379kbps"
        },
        {
          "key": "resolution",
          "value": "1280x720"
        }
      ]
    },
    {
      "id": "RTCInboundRTPVideoStream_414471737",
      "type": "INBOUND_VIDEO_TYPE",
      "trackIdentifier": "dualvideo4",
      "_values": [
        {
          "key": "timestamp",
          "value": "1642515711347.853"
        },
        {
          "key": "packetsReceived",
          "value": "1893"
        },
        {
          "key": "packetsLost",
          "value": "0"
        },
        {
          "key": "percentagePacketsLost",
          "value": "0%"
        },
        {
          "key": "percentagePacketsLostRecent",
          "value": "0%"
        },
        {
          "key": "codec",
          "value": "video/H264"
        },
        {
          "key": "bitrate",
          "value": "851kbps"
        },
        {
          "key": "resolution",
          "value": "1280x720"
        }
      ]
    }
  ]
}

Run tests

npm test

Maintainer

Krivega Dmitriy

  • Website: https://krivega.com
  • Github: @Krivega

Contributing

Contributions, issues and feature requests are welcome!Feel free to check issues page. You can also take a look at the contributing guide.

📝 License

Copyright © 2020 Krivega Dmitriy. This project is MIT licensed.