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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@arran4/tsobjectutils

v1.2.7

Published

Some typescript marshaling to class helper functions

Readme

tsobjectutils

tsobjectutils provides helper functions to read values from untyped JavaScript objects and marshal them into TypeScript classes. These utilities help avoid runtime errors when parsing JSON or other data sources by validating and converting properties on the fly.

Why it exists

When working with TypeScript, it's common to receive data from external sources like APIs or local storage. This data is often untyped, meaning that the shape of the object is not guaranteed. Accessing fields directly can lead to runtime errors, such as TypeError: Cannot read property '...' of undefined.

This library provides a set of helper functions that allow you to safely extract and convert values from untyped objects. This makes it easy to construct a class from loose JSON without sprinkling checks throughout your code.

How it helps

By using the helper functions provided by this library, you gain the following benefits:

  • Type safety: The helper functions ensure that the values you extract from untyped objects have the correct type.
  • Null safety: The helper functions handle null and undefined values gracefully, preventing runtime errors.
  • Code clarity: The helper functions make your code more readable and easier to understand.
  • Reduced boilerplate: The helper functions reduce the amount of boilerplate code you need to write.

Installation

npm install @arran4/tsobjectutils

Usage

Below is a simplified User model showing the intended pattern.

import {
  GetStringPropOrDefault,
  GetDatePropOrDefault,
  GetBooleanPropOrDefault,
  GetObjectPropOrThrow,
  GetStringArrayPropOrDefault
} from "@arran4/tsobjectutils";

class UserSettings {
  constructor(
    props: Partial<Record<keyof UserSettings, unknown>> | null = null,
    public Theme: string = GetStringPropOrDefault(props, "Theme", "light")
  ) {}
}

export class User {
  constructor(
    props: Partial<Record<keyof User, unknown>> | null = null,
    public UserUID: string = GetStringPropOrDefault(props, "UserUID", ""),
    public Email: string = GetStringPropOrDefault(props, "Email", ""),
    public Name: string = GetStringPropOrDefault(props, "Name", ""),
    public Settings: UserSettings = GetObjectPropOrThrow<UserSettings>(props, "Settings"),
    public Tags: string[] = GetStringArrayPropOrDefault(props, "Tags", []),
    public Created: Date | null = GetDatePropOrDefault(props, "Created", null),
    public Active: boolean = GetBooleanPropOrDefault(props, "Active", false)
  ) {}
}

Common helpers can also be used independently:

const lastLogin = GetDatePropOrDefault(rawUser, "LastLogin", new Date());
const settings = GetObjectPropOrThrow<UserSettings>(rawUser, "Settings");
const roles = GetStringArrayPropOrDefault(rawUser, "Roles", []);
const isAdmin = GetBooleanPropOrDefault(rawUser, "IsAdmin", false);

By relying on these helpers you gain:

  • a single constructor argument for easy copying of an object
  • safer unmarshalling of deserialized JSON objects

API summary

  • GetStringPropOrDefault, GetStringPropOrDefaultFunction, GetStringPropOrThrow – retrieve string properties
  • GetNumberPropOrDefault, GetNumberPropOrDefaultFunction, GetNumberPropOrThrow – retrieve numeric properties
  • GetBigIntPropOrDefault, GetBigIntPropOrDefaultFunction, GetBigIntPropOrThrow – retrieve bigint properties
  • GetDatePropOrDefault, GetDatePropOrDefaultFunction, GetDatePropOrThrow – parse dates and timestamps
  • GetMapPropOrDefault, GetMapPropOrDefaultFunction, GetMapPropOrThrow – retrieve map properties
  • GetStringArrayPropOrDefault, GetStringArrayPropOrDefaultFunction, GetStringArrayPropOrThrow – read arrays of strings
  • GetDateArrayPropOrDefault, GetDateArrayPropOrDefaultFunction, GetDateArrayPropOrThrow – read arrays of dates
  • GetObjectPropOrDefault, GetObjectPropOrDefaultFunction, GetObjectPropOrThrow – get nested objects
  • GetObjectFunctionPropOrDefault, GetObjectFunctionPropOrThrow – construct nested objects via a custom constructor
  • GetObjectPropOrDefaultAllowNull, GetObjectPropOrDefaultFunctionAllowNull, GetObjectPropOrThrowAllowNull – get nested objects, allowing null values
  • GetObjectFunctionPropOrDefaultAllowNull, GetObjectFunctionPropOrThrowAllowNull – construct nested objects via a custom constructor, allowing null values
  • GetObjectArrayPropOrDefault, GetObjectArrayPropOrDefaultFunction, GetObjectArrayPropOrThrow, GetObjectArrayFunctionPropOrDefault, GetObjectArrayFunctionPropOrThrow – work with arrays of objects
  • GetBooleanPropOrDefault, GetBooleanPropOrDefaultFunction, GetBooleanFunctionPropOrDefault, GetBooleanPropOrThrow – handle booleans
  • ConstructorFunc<T> – type for custom constructors
  • ConstructorFuncAllowNull<T> – type for custom constructors that allow null values

Running tests

Use npm test to run the Jest suite and verify the utilities.

Links

Definitions

export function GetBigIntPropOrDefault<R extends bigint | null>(props: Record<string, unknown> | undefined | null, prop: string, defaultValue: R): R;
export function GetBigIntPropOrDefaultFunction<R extends bigint | null>(props: Record<string, unknown> | undefined | null, prop: string, defaultFunction: () => R): R;
export function GetBigIntPropOrThrow<R extends bigint | null>(props: Record<string, unknown> | undefined | null, prop: string, message?: string): R;
export function GetBooleanFunctionPropOrDefault(props:Record<string, unknown> | undefined | null, prop:string, constructorFunc: (v: unknown) => boolean, defaultValue:boolean):boolean;
export function GetBooleanFunctionPropOrDefaultFunction(props:Record<string, unknown> | undefined | null, prop:string, constructorFunc: (v: unknown) => boolean, defaultValue: () =>boolean):boolean;
export function GetBooleanPropOrDefault(props:Record<string, unknown> | undefined | null, prop:string, defaultValue:boolean):boolean;
export function GetBooleanPropOrDefaultFunction(props:Record<string, unknown> | undefined | null, prop:string, defaultValue: () =>boolean):boolean;
export function GetBooleanPropOrThrow(props:Record<string, unknown> | undefined | null, prop:string, constructorFunc?: (v: unknown) => boolean):boolean;
export function GetDateArrayPropOrDefault<R>(props: Record<string, unknown> | undefined | null, prop: string, defaultValue: R): Date[] | R;
export function GetDateArrayPropOrDefaultFunction<R>(props: Record<string, unknown> | undefined | null, prop: string, defaultFunction: () => R): Date[] | R;
export function GetDateArrayPropOrThrow(props: Record<string, unknown> | undefined | null, prop: string): Date[];
export function GetDatePropOrDefault<R>(props: Record<string, unknown> | undefined | null, prop: string, defaultValue: R): R | Date;
export function GetDatePropOrDefaultFunction<R>(props: Record<string, unknown> | undefined | null, prop: string, defaultFunction: () => R): R | Date;
export function GetDatePropOrThrow(props: Record<string, unknown> | undefined | null, prop: string): Date;
export function GetMapPropOrDefault<K, V, R>(props: Record<string, unknown> | undefined | null, prop: string, defaultValue: R): Map<K, V> | R;
export function GetMapPropOrDefaultFunction<K, V, R>(props: Record<string, unknown> | undefined | null, prop: string, defaultFunction: () => R): Map<K, V> | R;
export function GetMapPropOrThrow<K, V>(props: Record<string, unknown> | undefined | null, prop: string, message?: string): Map<K, V>;
export function GetNumberPropOrDefault<R extends number | null>(props: Record<string, unknown> | undefined | null, prop: string, defaultValue: R): R;
export function GetNumberPropOrDefaultFunction<R extends number | null>(props: Record<string, unknown> | undefined | null, prop: string, defaultFunction: () => R): R;
export function GetNumberPropOrThrow<R extends number | null>(props: Record<string, unknown> | undefined | null, prop: string, message? : string): R;
export function GetObjectArrayFunctionPropOrDefault<Y, X extends Y[] | null>(props: Record<string, unknown> | undefined | null, prop: string, constructorFunc: ConstructorFunc<Y>, defaultValue: X): X;
export function GetObjectArrayFunctionPropOrThrow<Y, X extends Y[] | null>(props: Record<string, unknown> | undefined | null, prop: string, constructorFunc: ConstructorFunc<Y>, message? : string): X;
export function GetObjectArrayPropOrDefault<Y, X extends Y[] | null>(props: Record<string, unknown> | undefined | null, prop: string, defaultValue: X): X;
export function GetObjectArrayPropOrDefaultFunction<Y, X extends Y[] | null>(props: Record<string, unknown> | undefined | null, prop: string, constructorFunc: ConstructorFunc<Y>, defaultValue: () => X): X;
export function GetObjectArrayPropOrThrow<Y, X extends Y[] | null>(props: Record<string, unknown> | undefined | null, prop: string): X;
export function GetObjectFunctionPropOrDefault<Y>(props: Record<string, unknown> | undefined | null, prop: string, constructorFunc: ConstructorFunc<Y>, defaultValue: Y): Y;
export function GetObjectFunctionPropOrDefaultAllowNull<Y>(props: Record<string, unknown> | undefined | null, prop: string, constructorFunc: ConstructorFuncAllowNull<Y>, defaultValue: Y): Y;
export function GetObjectFunctionPropOrThrow<Y>(props: Record<string, unknown> | undefined | null, prop: string, constructorFunc: ConstructorFunc<Y>, message? : string): Y;
export function GetObjectFunctionPropOrThrowAllowNull<Y>(props: Record<string, unknown> | undefined | null, prop: string, constructorFunc: ConstructorFuncAllowNull<Y>, message?: string): Y;
export function GetObjectPropOrDefault<Y>(props: Record<string, unknown> | undefined | null, prop: string, defaultValue: Y): Y;
export function GetObjectPropOrDefaultAllowNull<Y>(props: Record<string, unknown> | undefined | null, prop: string, defaultValue: Y): Y;
export function GetObjectPropOrDefaultFunction<Y>(props: Record<string, unknown> | undefined | null, prop: string, constructorFunc: ConstructorFunc<Y>, defaultValue: () => Y): Y;
export function GetObjectPropOrDefaultFunctionAllowNull<Y>(props: Record<string, unknown> | undefined | null, prop: string, constructorFunc: ConstructorFuncAllowNull<Y>, defaultValue: () => Y): Y;
export function GetObjectPropOrThrow<Y>(props: Record<string, unknown> | undefined | null, prop: string): Y;
export function GetObjectPropOrThrowAllowNull<Y>(props: Record<string, unknown> | undefined | null, prop: string): Y;
export function GetStringArrayPropOrDefault<R>(props: Record<string, unknown> | undefined | null, prop: string, defaultValue: R): string[] | R;
export function GetStringArrayPropOrDefaultFunction<R>(props: Record<string, unknown> | undefined | null, prop: string, defaultFunction: () => R): string[] | R;
export function GetStringArrayPropOrThrow(props: Record<string, unknown> | undefined | null, prop: string, message? : string): string[];
export function GetStringPropOrDefault<R extends string | null>(props: Record<string, unknown> | undefined | null, prop: string, defaultValue: R): R;
export function GetStringPropOrDefaultFunction<R extends string | null>(props: Record<string, unknown> | undefined | null, prop: string, defaultFunction: () => R): R;
export function GetStringPropOrThrow<R extends string | null>(props: Record<string, unknown> | undefined | null, prop: string, message? : string): R;
export type ConstructorFunc<Y> = (params: object) => Y;
export type ConstructorFuncAllowNull<Y> = (params: object | null) => Y;

Check Tests for example usage.