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

@webkrafters/timed-map

v1.3.3

Published

A timed map javascript data structure ideal for app level caching and memoization.

Downloads

20

Readme

Timed-Map

Name: Timed-Map

Install:
npm i -S @webkrafters/timed-map

Description

An observable timed map javascript data structure. Tracks and removes outdated infrequently read entries.

Ideal Use-case

Ideal for in-app Application Level Memoization and Caching.

Usage

import TimedMap from '@webkrafters/timed-map';

const timedMap = new TimedMap( 1000 ); // max-age of 1-second per infrequently-used map entries

const timedMap = new TimedMap(); // defaults to 30 mins max-age

MapEntry

A map entry object holds the following information:

{
	createdAt: int // Date in millis since epoch
	key: string
	value: any
	ttl: int // Duration in millis
}

Requirement

The TimedMap close() instance method must be called prior to deleteing or setting this map to null. This cleans up the underlying driver along with any system resources used such as cpu timers etc.

Public Interface

constructor(maxEntryAgeMillis?: int): TimedMap

Creates an instance of TimedMap. The optional maxEntryAgeMillis value is a class-level TTL in milliseconds applied to all entries in the map. A default of 1800000ms (i.e. 30 minutes) is assigned if omitted. Any entry which remained un-read at the end of the TTL-cycle is removed. get(key) and getEntry(key) methods constitute the only valid entry read operations. To obtain entry value without restarting the entry TTL-cycle, see the peak(key) method. Individual TTLs may be assigned to entries upon insertion. See the put(...) method. The individual TTL supersedes the class-level TTL for the individual entry.

entries: MapEntry[] - readonly

Computed property: available entries.

isEmpty: boolean - readonly

Computed property: check-flag confirming a map containing no entries.

keys: string[] - readonlys

Computed property: keys to all available entries.

maxEntryAge: int

Property: TTL value in milliseconds applied to map entries. Setting this property triggers adjustments in the map's internal TTL cycle processes.

size: int - readonly

Computed property: number of entries in the map

clear(): void

Removes all entries from the map

close(): void

Recommended pre-delete method: please use this method to release system resources and clean up the internal driver prior to deleteing this TimeMap instance or setting it to null.

get(key: string): any

Returns the value at key and restarts the entry's TTL cycle. This constitutes a valid read operation.

getEntry(key: string): MapEntry

Returns the entry object residing at key. This constitutes a valid read operation.

has(key: string): boolean

Verifies the presence of a valid map entry at this key

off(type: EventType, listener: Eventlistener): void

Cancels event by listener function reference. Please see Events section below for more on event types and event listener.

offById(eventId: string): void

Cancels event by event ID. Please see Events section below for more on event ID.

on(type: EventType, listener: Eventlistener, attributes?: Object): string

Subscribes to event of event type and returns unique eventId. Supply any additional info to capture as part of this event to the optional attributes object argument. Please see Events section below for more on event types, event ID and event listener.

once(type: EventType, listener: Eventlistener, attributes?: Object): string

Subscribes to one-use event of event type and returns unique eventId. Supply any additional info to capture as part of this event to the optional attributes object argument. Please see Events section below for more on event types, event ID and event listener.

peak(key: string): any

Returns the value at key without restarting the entry's TTL cycle.

put(key: string, value: any, ttl?: int ): MapEntry

Creates a new map entry. If an entry existed at the key, it is overriden and returned. When the optional ttl value is supplied, it takes precedence over the class-level TTL value for calculating TTL cycles for this entry. Please see the get and getEntry methods.

remove( key: string): MapEntry

If an entry existed at the key, it is removed and returned.

Events

This map is observable and provides pathways for notifying observers of relevant changes within. For this purpose, six event types have been provided.

Event Map Table


|Event Type |Trigger |Event Data |-------------|-------------------------------------------------------|------------------------------- |AUTO_RENEWED | After an entry read (See valid read operations above) |key: stringcreatedAt: intpreviouslyCreatedAt: int |CLEARED | After a map clear operation |removed: MapEntry[] |CLOSING | The close method call prior to clean up operation. |undefined |PRUNED | After pruning outdated entries |removed: MapEntry[] |PUT | After a put method call operation |current: MapEntryprevious: MapEntry |REMOVED | After a remove method call operation |removed: MapEntry

Timing: Excluding the CLOSING event, all event listeners are scheduled to run at the conclusion of previously scheduled tasks. CLOSING event listeners are run immediately.


Event Listener

The event listener is triggered with a lone argument: the event payload. The event payload object emitted contains the following information:

attributes: Object (Please see the on method discussion above) data: Event Data Object (See Event Map Table above) date: Date - event date id: string - event ID timestamp: int - event date in milliseconds type: Event Type (See Event Map Table above)

Immutability: With the exception of attributes and date, immutability is maintained on all properties of the event payload. The date property is a native Date instance object. The attributes property is presented to the user exactly as defined by the user.

Event ID

Every subscribed event listener is assigned a unique event ID during subscription. The on and once methods constitute the two avenues for event subscription. These methods return the unique event ID correspondingly. While the listener function reference remains the most popular means for identifying events for cancellation, the event ID is the surest means of accomplishing same purpose. Please see the off and offById methods.

License

ISC