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

data-formula

v1.0.4

Published

Flexible data processing with SQL, JsonPath, and transform support in pipeline steps.

Downloads

18

Readme

Data Formula · GitHub license

Flexible data processing with SQL, JsonPath, and transform support in pipeline steps.

  • Simple to use use json structure to get your resutls.

  • Less code with this library use less code and get faster results.

Is possible use the library in the playground.

Install

npm install data-formula

Code Examples

Is possible use SQL without server:

import { formula } from 'data-formula';

const input = {
  users: [
    {
      id: 'U01',
      name: 'John Connor',
    },
    {
      id: 'U02',
      name: 'Bruce Lee',
    },
  ],
};

const actions = [
  {
    type: 'calcule',
    sql: `
    SELECT
      name
    FROM
      users
    ORDER BY
      name
    `,
    output: {
      name: 'users_order_by_name',
    },
  },
];

const output = formula(actions, input);
console.log(output.users_order_by_name);
/*
[
    {
      name: 'Bruce Lee',
    },
    {
      name: 'John Connor',
    },
  ]
*/

Is possible use transform data:

import { formula } from 'data-formula';

const input = {
  users: [
    {
      id: 'U01',
      name: 'John Connor',
      event_at: '2025-06-01',
      customer: {
        id: 'C01',
        name: 'Company 1',
      },
    },
    {
      id: 'U03',
      name: 'Alice',
      event_at: '2025-06-22',
      customer: {
        id: 'C01',
        name: 'Company 1',
      },
    },
    {
      id: 'U02',
      name: 'Bruce Lee',
      event_at: '2025-06-12',
      customer: {
        id: 'C02',
        name: 'Company 2',
      },
    },
  ],
};

const actions = [
  {
    type: 'transform',
    mapper: {
      id: 'id',
      name: 'name',
      ts: ['$.event_at', 'formatToTimestamp'],
      day: ['$.event_at', 'formatToDay'],
      customer_id: '$.customer.id',
      customer_name: '$.customer.name',
    },
    input: {
      name: 'users',
    },
    output: {
      name: 'users_transformed',
    },
  },
];

const output = formula(actions, input);
console.log(output.users_transformed);
/*
[
    {
      id: 'U01',
      name: 'John Connor',
      ts: 1748736000000,
      day: '06',
      customer_id: 'C01',
      customer_name: 'Company 1',
    },
    ...
]
*/

Mixed:

import { formula } from 'data-formula';

const input = {
  users: [
    {
      id: 'U01',
      name: 'John Connor',
      event_at: '2025-06-01',
      customer: {
        id: 'C01',
        name: 'Company 1',
      },
    },
    {
      id: 'U03',
      name: 'Alice',
      event_at: '2025-06-22',
      customer: {
        id: 'C01',
        name: 'Company 1',
      },
    },
    {
      id: 'U02',
      name: 'Bruce Lee',
      event_at: '2025-06-12',
      customer: {
        id: 'C02',
        name: 'Company 2',
      },
    },
  ],
};

const actions = [
  {
    type: 'transform',
    mapper: {
      id: 'id',
      name: 'name',
      customer_id: '$.customer.id',
      customer_name: '$.customer.name',
    },
    input: {
      name: 'users',
    },
    output: {
      name: 'users_transformed',
    },
  },
  {
    type: 'calcule',
    sql: `
    SELECT
      customer_id,
      customer_name,
      SUM(COUNT(*)) as count
    FROM
      users_transformed
    ORDER BY
      name
    `,
    output: {
      name: 'users_group_by_company',
    },
  },
];

const output = formula(actions, input);
console.log(output.users_group_by_company);
/*
[
    {
      count: 2,
      customer_name: 'Company 1',
    },
    {
      count: 1,
      customer_name: 'Company 2',
    }
]
*/

Structure

Transform

{
  type: 'transform',
  mapper: <string, string || Array>[
    // 'my_field_transformed': ['field' | 'function' | 'jsonpath']
  ],
  input: {
    name: string
  },
  output: {
    name: string
  }
}

Functions can use in mapper:

formatToTimestamp Format date to timestamp

formatToDay Format date to a day

jsonpath Also is posiible extrand information using jsonpath syntax $.my_field more info: [https://www.npmjs.com/package/jsonpath#jsonpath-syntax]

Calcule

{
  type: 'calcule',
  sql: string, // sql query to filter, group or calcule
  output: {
    name: string
  }
}

License

React is MIT licensed.