New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@saxs/json-path-transform

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@saxs/json-path-transform

Transform JSON objects using JSONPath syntax

latest
Source
npmnpm
Version
0.4.2
Version published
Maintainers
1
Created
Source

@saxs/json-path-transform

Transforms JSON objects using a path-based approach.

Description

This package provides a simple way to transform JSON objects using a path-based approach.

The purpose is to make it possible to write declarative transformations for json objects, hence make it useable in a configuration file or from user inputs.

Installation

Using npm

npm install @saxs/json-path-transform

Using yarn

yarn add @saxs/json-path-transform

Using pnpm

pnpm add @saxs/json-path-transform

Usage

The schema defines the transformation rules. The keys are the target keys and the values are the paths to the source keys.

import { PathTransform } from '@saxs/json-path-transform';

const schema = {
  name: '$.user.name',
  age: '$.user.age',
};

const data = {
  user: {
    name: 'John Doe',
    age: 30,
  },
};

const transformer = new PathTransform(schema).compile();

console.log(transformer(data)); // { name: 'John Doe', age: 30 }

Syntax

The JSONPath syntax is used to define the paths. The package uses the jsonpath-plus package under the hood to resolve the paths.

Exmaples can be found at https://goessner.net/articles/JsonPath/.

Root ($) key

The root key can be used to define the root of the object at any given depth. This copies the main object to that level.

import { PathTransform } from '@saxs/json-path-transform';

const schema = {
  $: '$.user',
};

const data = {
  user: {
    name: 'John Doe',
    age: 30,
  },
};

const transformer = new PathTransform(schema).compile();

console.log(transformer(data)); // { name: 'John Doe', age: 30 }

Performance

The performance is dependant on the complexity of the schema and the size of the data. The package makes a AOT compilation of the schema to make the transformation as fast as possible, and uses jsonpath-plus package under to hood to resolve results from each path.

On a M1 Macbook Air (16GB RAM) we can expect the following performance as seen under the benchmark folder.

Test Nameops/secConfidence Interval
root4,907,733±0.20%
allAuthors479,267±0.35%
allAuthorsDot1,007,505±1.30%
addKey449,904±0.76%

FAQs

Package last updated on 26 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts