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 🙏

© 2026 – Pkg Stats / Ryan Hefner

freaq

v1.0.1

Published

A simple statistics library for node and client js

Readme

Freaq

A simple statistics library for node and client side js

Usage Methods

Usage

  • Install the freaq package using yarn or npm
npm install freaq
  • Initialize freaq function with a parameter of array for dataset
const freaq = new Freaq([
  90.65, 70.65, 72.2, 82.43, 77.64, 95.84, 77.69, 74.36, 88.43, 91.17, 89.85,
  98.57, 80.73, 74.7, 82.12, 78.88, 76.5, 94.59, 92.23, 88.55, 98.48, 74.55,
  70.53, 98.23, 71.19, 72.6, 85.29, 75.99, 83.57, 82.84, 70.53,
]);

Methods

  • dataset - returns the dataset configured during initialization
  • size - returns the length of the dataset
  • sort - returns the sorted dataset
  • summation - returns the sum of all of the entry in dataset
  • mean - returns the mean, also known as arithmetic average, is a central value of a finite set of numbers
  • median - returns the middle number in a sorted, ascending list of numbers and can be more descriptive of that data set than the average.
  • mode - returns the value that appears most often in a set of data values.
  • range - returns the difference between the largest and smallest values.
  • sVar - returns the expectation of the squared deviation of a random variable from its population mean or sample mean.
  • sDeviation - returns the measure of the amount of variation or dispersion of a set of values.
  • q1 - Q1 is the median (the middle) of the lower half of the data
  • q2 - The second quartile, Q2, is also the median
  • q3 - returns upper quartile, or third quartile (Q3), is the value under which 75% of data points are found when arranged in increasing order
  • occurrences - returns an object mapped to the number of occurences of each element in dataset
  • getFrequency - returns how many times the specified element occur in the dataset. Returns -1 if not found.