🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more

purge-from-html

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
p

purge-from-html

Html extractor for purgecss - get all selectors from a html file

1.0.3
latest
72

Supply Chain Security

100

Vulnerability

77

Quality

76

Maintenance

100

License

Repository has been archived by the owner.

Unpopular package

Quality

This package is not very popular.

Found 1 instance in 1 package

Version published
Weekly downloads
629
-32.87%
Maintainers
1
Weekly downloads
 
Created
Issues
0

Purgecss-from-html

Build Status CircleCi dependencies Status devDependencies Status

Get the selectors of an html file.

Use with Purgecss

import Purgecss from "purgecss"
import purgeHtml from "purgecss-from-html"
const purgeCss = new Purgecss({
    content: ["**/*.html"],
    css: ["**/*.css"],
    extractors: [
        {
            extractor: purgeHtml,
            extensions: ["html"]
        }
    ]
})
const result = purgecss.purge()

Use alone

import purgeHtml from "purgecss-from-html"
import fs from "fs"

const htmlContent = fs.readFileSync("index.html")
const htmlSelectors = purgeHtml.extract(htmlContent)

FAQs

Package last updated on 24 Jul 2017

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