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

diff-frag

v1.1.1

Published

Take a big diff with a 2-line header and turn it into frags with only a reasonable amount of context

Downloads

30,131

Readme

diff-frag

Take a big diff with or without a 2-line header and turn it into frags with only a reasonable amount of context

For example, you might have a program that spits out a diff like this:

some header data
Author: Bobo The Cat <[email protected]>
Date: Wed Nov 20 20:13:08 2019 -0800

diff --git a/bowl.txt b/bowl.txt
index glorp..prolg 100655
--- a/bowl.txt
+++ b/bowl.txt
 space-prefixed lines are the same in both
 but we were sloppy in what got included in the diff

 this can happen if you tell git to output a LOT of context, or if you
 have a program that diffs objects in a naive way.

 so you get 1000 lines of identical output ...

 but dumping that all to ta teerminal is so ruuuuuude

-what you want
+what you want is just this bit
+ just the changes

 more more more more more.... it goes on and on for a long time...

In that case, what you'd really prefer is something like:

some header data
Author: Bobo The Cat <[email protected]>
Date: Wed Nov 20 20:13:08 2019 -0800

diff --git a/bowl.txt b/bowl.txt
index glorp..prolg 100655
--- a/bowl.txt
+++ b/bowl.txt
@@ -1000,6 +1000,7 @@ so you get 1000 lines of identical...

 but dumping that all to ta teerminal is so ruuuuuude

-what you want
+what you want is just this bit
+just the changes

 more more more more more.... it goes on and on for a long time...
@@ -2456,5 +2567,5 @@ another bit of context here

+ added line
+ well, you get
- removed line
- the idea

 just the changes, is what I'm saying, not the 1000 lines between.

This function will take the first kind of string, and turn it into the second. It's useful for test frameworks that pretty-print object diffs, for object matching assertions, and want to make them prettier when the object is really big.

USAGE

const diffFrag = require('diff-frag')
// options are optional, you don't have to pass that in
const fraggedDiff = diffFrag(rawDiff, options)
// that's it, it's just the one function

OPTIONS

  • contextLines How many lines of context to show? Default = 3
  • hasHeader Set to true to indicate that there is a header separated by --- oldName\n+++ newName\n lines. Set to false to indicate that you're definitely only sending just the +/-/' '-prefixed diff parts. Leave it as the default null to tell diffFrag to try to figure it out.
  • oldName Only relevant if the header can't be found, otherwise it'll use the oldName in the header that the diff already has.
  • oldHeader Only relevant if the header can't be found, otherwise it'll use the oldHeader in the header that the diff already has.
  • newName Only relevant if the header can't be found, otherwise it'll use the newName in the header that the diff already has.
  • newHeader Only relevant if the header can't be found, otherwise it'll use the newHeader in the header that the diff already has.

A ---/+++ header is always attached to the diff it returns. If a header is found in the diff you provide, then it'll use the names it finds, otherwise it's generated as:

`---${oldName}\t${oldHeader}\n+++${newName}\t${newHeader}`