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

high-water-mark

v1.0.0

Published

Zero-dependency tracking of a high water mark over a series of values with configurable options including a low water mark.

Downloads

2

Readme

High Water Mark

Zero-dependency tracking of a high water mark over a series of values with configurable options including a low water mark.

This document only talks about a high water mark for clarity. Setting options.invert = true will flip the output to track the lowest values.

Features

  • Invert to track the low water mark
  • All time high tracking
  • Time expiring tracking tracking
  • Last n values tracking

Use

npm i high-water-mark

In its default configuration an all-time high is tracked as shown below.

const HighWaterMark = require('high-water-mark');

const h = new HighWaterMark();

h.store(10);
h.store(5);
console.log(h.value); // 10
h.store(15);
console.log(h.value); // 15

Additional examples for each mode are available in the examples folder.

API

Complete API documentation

Count mode

Count mode keeps a history of the last options.countLimit values. Upon .storeing a value if the internal history length has reached the limit the newest value is added at the bottom of the history and the oldest value is removed from the top of the list. When accessing .value the maximum value of the internal history is returned.

Time mode

Time mode timestamps each value as it is .stored. Upon evaluating .value all items with a timestamp older than options.timeLimit are removed from the internal history, and the highest value in the history is returned.

Important The expiration time is calculated from the moment when .value is accessed, not from the most recent timestamp recorded in history.

Also Important If more time than options.timeLimit has elapsed since the last value was .stored then .value will return undefined this is by design.

newHigh event

The event newHigh is emitted when a value is .stored and is a new high value.

  • This event is not emitted if newValue === currentHighValue
  • This event is always emitted on the first .store event when the .value changes from undefined to the stored value.

Performance considerations

The library has been designed with the best performance in mind for each mode. All modes are still very performant. Any computations made are cached to the best extent possible. But if you want to squeeze every bit of speed out of your code continue reading.

In terms of performance the three modes are fastest to slowest:

  • all
  • count
  • time

Please also consider:

  • Using the newHigh event decreases performance for count and time as the highest value must be evaluated on every .store. Without using this event calculation of highest is deferred to accessing .value.
  • If you are considering time mode it may not be necessary in many situations. If you are calling .store and .value in the same time-driven routine (such as setInterval) then count mode can be used to achieve the same idea: options.timeLimit = options.countLimit * setInterval time.

Tests and coverage

npm test
npm run coverage