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

array-patch

v2.0.1

Published

Create patch diffs for arrays

Downloads

20

Readme

array-patch

build status JavaScript Style Guide

When given two arrays, this module creates patches that let you modify the first array into the second one. This is especially useful for HTTP PATCH methods (when you only want to send the changes) or just to get a overview of what changed between two given arrays.

Usage

const { createPatch, applyPatch } = require('array-patch')

var arr1 = [1, 2, 3, 4, 5]
var arr2 = [1, 3, 4, 6]

var patch = createPatch(arr1, arr2)
console.log(applyPatch(arr1, patch))
// => [1, 3, 4, 6]

Applying a produced patch always transforms the first array into the second. If you find a case where the resulting patched array is not equal to the given second array, please file an issue.

The compare function

This module works by first building a list of unchanged couples using object-hash. This works very well for most cases but imagine the following scenario:

var arr1 = ['foo', 'bar', 'baz']
var arr2 = ['foo', 'blub', 'bar1', 'baz']

Visibly it's clear that we inserted a new entry 'blub' into the second array and changed the value of the entry 'bar' to 'bar1'. But because the hashes obviously change when the value changes, the result in this case would be that we have a change from 'bar' to 'blub' and a new entry 'bar1'.

To catch those unnecessary changes you can give a compare function. This will be applied for the cases where it's not entirely clear and there are multiple possible candidates.

The arguments for the function will be the value from the initial array and the possible value from the second array. The function must return a numerical value representing the similarity of the two values.

This example can be implemented like the following:

var arr1 = [1, 2, 3, 4]
var arr2 = [1, 5, 2, 4]

var patch = createPatch(arr1, arr2, (val1, val2) => {
  return val2 / val1
})

console.log(patch)
// => [ { type: 'insertion', index: 1, value: 5 },
//  { type: 'deletion', index: 2 } ]

For a text array you could use similarity like the following:

var similarity = require('similarity')

var arr1 = ['foo', 'bar', 'baz']
var arr2 = ['foo', 'blub', 'bar1', 'baz']

var patch = createPatch(arr1, arr2, similarity)

console.log(patch)
// => [ { type: 'insertion', index: 0, value: 'blub' },
//  { type: 'change', index: 1, value: 'bar1' } ]

Requirements

This module runs on node >= 8 and modern browsers using Browserify or Webpack.

Tests

The tests are implemented in tests/ using tape. Run them with npm test.

Issues

If you find any issues, please file them on the Github repo. If you submit pull requests, please make sure that the tests (npm test) pass.