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

object-reshaper

v0.3.0

Published

TypeScript-first schema-based object transformation

Downloads

1,779

Readme

Object Reshaper

CI Coverage Status Known Vulnerabilities

TypeScript-first schema-based object transformation.

Table of Contents

Introduction

Object Reshaper provides a type-safe interface for transforming objects using a schema, allowing users to easily transform objects without having to write boilerplate code. It supports renaming fields, extracting nested objects, and flattening nested arrays. Simply define a schema that describes the desired output using dot notation and Object Reshaper will generate a function that transforms input objects into the desired shape.

:warning: What Object Reshaper is not

Object Reshaper is not a replacement for existing object validation libraries. It is strongly recommended that any inputs from users or external sources be validated before being passed to Object Reshaper. Object Reshaper does not perform any validation of object properties at runtime and supplying any inputs that do not conform to the expected type will result in undefined behaviour.

Installation

$ npm install object-reshaper

Requirements

  • TypeScript 4.9+

Usage

Object Reshaper provides a reshaperBuilder function that takes in a schema and returns a function that transforms input objects into the desired shape.

The schema is a JavaScript object that should have the same structure as the desired output object, including any nested structures. The values of each property should be a string that describes the path to the desired property in the input object.

import { reshaperBuilder, Schema } from "object-reshaper";

type Input = {
  id: number;
  name: string;
};

const schema = {
  uin: "id",
  username: "name",
} as const satisfies Schema<Input>;

const reshaper = reshaperBuilder<Input, typeof schema>(schema);
reshaper({ id: 1, name: "John" }); // => { uin: 1, username: "John" } (Type: { uin: number, username: string })

To provide type safety, schemas must be declared with a const assertion so that TypeScript can retrieve the type of each property being accessed. Optionally, the satisfies operator can be used to ensure that the schema is valid for the input type during declaration.

Property Access

Properties in nested objects can be accessed using dot notation and elements in arrays can be accessed using the [*] operator.

The [*] operator, when chained with a dot and a property name, returns an array containing the value of the property for each element in the array. The [*] operator also automatically flattens the result of chained [*] operators.

Object Reshaper also supports accessing single elements within arrays by referencing their index.

type User = {
  id: number;
  name: {
    first: string;
    last?: string;
  };
  contact: number[];
  posts: {
    title: string;
    tags: string[];
  }[];
};

const user: User = {
  id: 1,
  name: {
    first: "John",
  },
  contact: [12345678],
  posts: [
    { title: "Hello World", tags: ["hello", "world"] },
    { title: "My Second Post", tags: ["diary"] },
  ],
};
id
number
1
name
{
  first: string;
  last?: string;
}
{ first: "John" }
name.first
string
"John"
name.last
string | undefined
undefined
contact or contact[*]
number[]
[12345678]
contact[0]
number | undefined
12345678
contact[1]
number | undefined
undefined
posts or posts[*]
{
  title: string;
  tags: string[];
}[]
[
  {
    title: "Hello World",
    tags: ["hello", "world"],
  },
  {
    title: "My Second Post",
    tags: ["diary"],
  },
]
posts[*].title
string[]
["Hello World", "My Second Post"]
posts[*].tags
string[][]
[["hello", "world"], ["diary"]]
posts[*].tags[*]
string[]
["hello", "world", "diary"]

*The above list is not exhaustive.

Declaring Multidimensional or Nested Arrays

Object Reshaper also supports the creation of multidimensional or nested arrays using a 2-tuple syntax, [<path>, <element definition>].

  • The first element of the 2-tuple must be a path to the array containing elements to be iterated. (Chained [*] operators are supported.)
  • The second element of the 2-tuple contains the definition of the elements in the array.
    • The second element may either be a path, a 2-tuple, or an object.
    • Paths within the element definition are relative to the array element being iterated.
const schema = {
  posts: ["posts[*]", { title: "title", category: "tags[0]" }],
} as const satisfies Schema<User>;

const reshaper = reshaperBuilder<User, typeof schema>(schema);
reshaper(user);
// => {
//      posts: [
//        { title: "Hello World", category: "hello" },
//        { title: "My Second Post", category: "diary" },
//      ],
//    }

Examples

Basic Usage

Renaming property names

import { reshaperBuilder, Schema } from "object-reshaper";

type Input = {
  id: number;
};
const schema = {
  new: "id",
} as const satisfies Schema<Input>;
const reshaper = reshaperBuilder<Input, typeof schema>(schema);
reshaper({ id: 1 }); // => { new: 1 } (Type: { new: number })

Extracting nested properties

import { reshaperBuilder, Schema } from "object-reshaper";

type Input = {
  user: {
    address: {
      street: string;
    };
  };
};
const schema = {
  street: "user.address.street",
} as const satisfies Schema<Input>;
const reshaper = reshaperBuilder<Input, typeof schema>(schema);
reshaper({ user: { address: { street: "home" } } }); // => { street: "home" } (Type: { street: string })

Manipulating Arrays

Accessing array elements

import { reshaperBuilder, Schema } from "object-reshaper";

type Input = {
  data: number[];
};
const schema = {
  new: "data[0]",
} as const satisfies Schema<Input>;
const reshaper = reshaperBuilder<Input, typeof schema>(schema);
reshaper({ data: [1, 2, 3] }); // => { new: 1 } (Type: { new: number | undefined })

Extracting fields from array elements

import { reshaperBuilder, Schema } from "object-reshaper";

type Input = {
  array: { nested: { within: string } }[];
};
const schema = {
  new: "array[*].nested.within",
} as const satisfies Schema<Input>;
const reshaper = reshaperBuilder<Input, typeof schema>(schema);
reshaper({
  array: [{ nested: { within: "first" } }, { nested: { within: "second" } }],
}); // => { new: ["first", "second"] } (Type: { new: string[] })

Flattening nested arrays

import { reshaperBuilder, Schema } from "object-reshaper";

type Input = {
  data: { nested: number[] }[];
};
const schema = {
  new: "data[*].nested[*]",
} as const satisfies Schema<Input>;
const reshaper = reshaperBuilder<Input, typeof schema>(schema);
reshaper({ data: [{ nested: [1, 2] }, { nested: [3, 4] }] });
// => { new: [1,2,3,4] } (Type: { new: number[] })

Transforming Objects Within Arrays

Flatten nested arrays and transform elements

import { reshaperBuilder, Schema } from "object-reshaper";

type Input = {
  data: { nested: { item: { id: number; name: string } }[] }[];
};
const schema = {
  new: [
    "data[*].nested[*]",
    {
      new: "item.id",
    },
  ],
} as const satisfies Schema<Input>;
const reshaper = reshaperBuilder<Input, typeof schema>(schema);
reshaper({
  data: [
    { nested: [{ item: { id: 1, name: "first" } }] },
    {
      nested: [{ item: { id: 2, name: "second" } }, { item: { id: 3, name: "third" } }],
    },
  ],
}); // => { new: [{ new: 1 }, { new: 2 }, { new: 3 }] } (Type: { new: { new: number }[] })

Specification

undefined & null Inputs

Object Reshaper supports undefined or null inputs and follows the same behaviour as the optional-chaining operator, ?., in JavaScript.

When using the [*] operator, undefined values are removed from the resulting array.

Union Input Types (Experimental)

Object Reshaper has experimental support for input types that contain union types.

The current implementation supports most union types but has known limitations when dealing with arrays.

In particular, arrays containing objects of different types cannot be perfectly distinguished from each other at runtime, resulting in an empty array always being returned, rather than undefined.

For example, the two different possible types of the array property cannot be distinguished at runtime since Object Reshaper does not record the type of the input object for use during runtime. As a result, Object Reshaper cannot determine if the object in the array is of type { id: number; a?: number } or { id: number; b?: string }, since both need not contain a.

type Input = {
  array: { id: number; a?: number }[] | { id: number; b?: string }[];
};

const schema = {
  new: "array[*].a",
} as const satisfies Schema<Input>;

const reshaper = reshaperBuilder<Input, typeof schema>(schema);
reshaper({ array: [{ id: 1, b: "hello world" }] }); // => { new: [] } (Type: { new: number[] })