Socket
Book a DemoInstallSign in
Socket

@auncel/diff-dom-core

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@auncel/diff-dom-core

typescript project template.

0.2.2-alpha.1
latest
Source
npmnpm
Version published
Weekly downloads
1
-90%
Maintainers
1
Weekly downloads
 
Created
Source

@auncel/diff-dom-core

Core HTML diff algorithm.

Usage

Clone Repo.

git clone https://github.com/auncel/diff-dom-core.git

Install dependence.

npm install

problem with install puppeteer. recommend using cnpm instead. see more detail at troublesheet.

Building Typescript.

npm run build

Tesing

npm run test

Exmaple

import { diffDomCore, Puppeteer } from '@auncel/diff-dom-core';

const options = {
  // generation: IGenerateRenderTreeOptions,
  diff: {
    rectTolerance: 0,
  },
  evaluation: {
    attrs: {
    isStrict: true,
      list: [],
    },
    // isTagStrictlyEqaul: true,
    isIdStrictlyEqual: false,
    isClassStrictlyEqual: true,
    },
  },
};

const diffRes = await diffDomCore(
  { html: '<div>Text</div>', style: 'div{color: #fff;}' },
  { html: '<div>Text</div>', style: 'div{color: #000;}' },
  options,
);
console.log(diffRes);
// ==>
// {
//   "score":80,
//   "logs":[
//     {
//       "location":"div",
//       "difference":[
//         "property incorrent. [color] expect: rgb(255, 255, 255), actual: rgb(0, 0, 0)"
//         ]
//       }
//   ]
// }

await Puppeteer.close();

Dependency Package

FAQs

Package last updated on 01 Jun 2020

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

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.