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

@fgv/ts-extras

v5.0.2

Published

Assorted Typescript Utilities

Readme

Summary

Assorted less-developed or more specialized utilities borrowed from various projects - much less polished and more likely to change or disappear:

  • ExtendedArray<T> - adds useful operations to the built-in Array
  • Formattable<T> - simple helpers to create mustache wrappers for objects and make them easily printable
  • Logger - A very basic logger suitable for hobby projects
  • RangeOf<T> - Generic open or closed ranges of orderable items (numbers, dates, etc)
  • ZIP FileTree - FileTree implementation for reading from ZIP archives (Node.js)
  • Converters - Type-safe data conversion utilities
  • CSV Helpers - Utilities for CSV processing
  • Hash Utilities - MD5 normalization and hashing utilities
  • RecordJar Helpers - Utilities for record collection management

Installation

With npm:

npm install @fgv/ts-extras

API Documentation

Extracted API documentation is here.

Overview

This package provides various utility functions and classes that are commonly needed across TypeScript projects, particularly those working with data processing, file handling, and type-safe operations.

API

ExtendedArray<T>

Extended array functionality with additional operations beyond the built-in Array methods.

Formattable<T>

Simple helpers for creating mustache-style wrappers around objects to make them easily printable and templatable.

Logger

A basic logging utility suitable for development and hobby projects.

RangeOf<T>

Generic implementation for representing open or closed ranges of orderable items like numbers, dates, or other comparable values.

ZIP FileTree

Node.js-compatible FileTree implementation for reading from ZIP archives using AdmZip:

import { ZipFileTree } from '@fgv/ts-extras';
import { FileTree } from '@fgv/ts-utils';

// Create ZIP FileTree from buffer
const zipAccessors = ZipFileTree.ZipFileTreeAccessors.fromBuffer(zipBuffer);
const fileTree = FileTree.FileTree.create(zipAccessors.value);

// Access files and directories
const file = fileTree.value.getFile('/path/to/file.json');
const contents = file.value.getContents(); // Parsed JSON
const rawContents = file.value.getRawContents(); // Raw string

Note: This implementation uses Node.js-specific dependencies (AdmZip, Buffer). For browser environments, see the browser-specific implementations in individual projects.

Converters

Type-safe data conversion utilities for transforming between different data formats while maintaining type safety.

Other Utilities

  • CSV Helpers: Utilities for processing CSV data
  • Hash Utilities: MD5 normalization and hashing functions
  • RecordJar Helpers: Utilities for managing record collections and data structures

Dependencies

This package depends on:

  • @fgv/ts-utils - Core utilities and Result pattern
  • adm-zip - ZIP file processing (Node.js only)
  • Various other utility packages for specific functionality

Platform Notes

  • ZIP FileTree: Node.js only (uses AdmZip and Buffer)
  • Other utilities: Cross-platform compatible
  • Browser usage: Most utilities work in browsers, but ZIP functionality requires browser-specific implementations