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

jsoncomparizer

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

jsoncomparizer - npm Package Compare versions

Comparing version
1.1.0
to
1.1.1
+1
-1
package.json
{
"name": "jsoncomparizer",
"version": "1.1.0",
"version": "1.1.1",
"description": "A lightweight npm package that takes two JSON objects and produces a human-friendly diff report",

@@ -5,0 +5,0 @@ "main": "src/index.js",

@@ -16,3 +16,3 @@ # Jsoncomparizer

```bash
const { diff } = require('jsondiffpretty');
const { diff } = require('jsoncomparizer');

@@ -22,3 +22,3 @@ const obj1 = { name: "Alice", age: 25 };

console.log(diff(obj1, obj2, options));
console.log(diff(obj1, obj2));

@@ -30,3 +30,3 @@ ```

```bash
const { diff } = require('jsondiffpretty');
const { diff } = require('jsoncomparizer');
const chalk = require('chalk');

@@ -50,3 +50,3 @@

#### Output
![output1](./output1.png "Output Result")
![output1](/output1.png "Output Result")

@@ -53,0 +53,0 @@ ## License