New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

diffling

Package Overview
Dependencies
Maintainers
0
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

diffling

A versatile diff computation package, supporting various diff methods and line-by-line comparisons.

  • 1.0.7
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
13
increased by225%
Maintainers
0
Weekly downloads
 
Created
Source

Diffling

Diffling is a utility for comparing and displaying differences between text or code snippets. It provides functionality to generate line-by-line comparisons and highlight changes between original and modified versions of text.

Features

  • Line-by-line comparison of text or code
  • Highlighting of added, removed, and unchanged lines
  • Support for both string and JSON comparisons
  • Customizable offset for line numbering

Installation

npm install diffling

or

yarn add diffling

Usage

Here's a basic example of how to use Diffling:

import { diffling } from 'diffling';

const original = `line1
line2
line3`;

const modified = `line1
line2 modified
line4`;

const diff = diffling(original, modified);
console.log(diff);

API

getLineDiffInformation(original: string, modified: string): Lines

Generates a detailed diff between two pieces of text or JSON objects.

  • original: The original text or JSON object
  • modified: The modified text or JSON object
  • offset: (Optional) Starting line number for the diff (default: 0)

Returns an object containing the line-by-line diff information and the indices of changed lines.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Acknowledgments

This project is heavily based on react-diff-viewer-continued. We are grateful for their work, which forms the foundation of this repository.

Disclaimer

This project is not affiliated with or endorsed by the creators of react-diff-viewer-continued.

Keywords

FAQs

Package last updated on 29 Aug 2024

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc