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

cssclear

v1.0.6

Published

CSSClear is a tool for removing unused CSS code from your code base. It's like [UnCSS](https://github.com/uncss/uncss), but more usable for non-static sites with huge stylesheets.

Downloads

12

Readme

CSSClear

CSSClear is a tool for removing unused CSS code from your code base. It's like UnCSS, but more usable for non-static sites with huge stylesheets.

Installation

npm install -g cssclear

Usage

Init and get CSS selectors

First, you have to initialize this tool and get JS files for using on your WEB pages. Such files will be copied to destination DIR.

cssclear init <path to destination DIR ... >

Next, you have to collect CSS selectors from your existing CSS files:

cssclear index <base> <file>

where:

  • base (String): Path to directory with CSS files

  • file (String): Path to JSON file that will be created

After this, you will receive JSON file with all CSS selectors of your project.

Integrate with your HTML pages

Next step, you have to integrate JS files to your HTML pages. You have to add some JS code to your HTML.

<script>
    var cssClear = {
        pathToSelectors: 'https://yourdomain.com/selectors.json',
        dataStoreProvider: {
            name: 'postData',
            options: {
                apiKey: "d58e3582afa99040e27b92b13c8f2280",
                URL: 'https://apidomain.com/save/point/'
            }
        }
    };
</script>
<script type="module" src="path/to/csscleaner.bundle.js"></script>

JS client looks for selectors from JSON (for example, https://yourdomain.com/selectors.json) on your HTML pages and keeps only 'live' of them.

  • pathToSelectors (String): URL path to JSON file with CSS selectors (see Init and get CSS selectors)

  • location (String): Unique key for a page (by default may be URI)

  • dataStoreProvider (Object): Data storage method configuration

  • dataStoreProvider.name (String): Data storage method type. You should use one the variants: postData, firebase

  • dataStoreProvider.options (Object): Object with configurations parameters for dataStoreProvider

dataStoreProvider

CSSClean supports two variants for saving data to the persistent remote storage. We call this mechanism dataStoreProvider. You can post the result of works JS client to your custom script on the server side (dataStoreProvider.name = 'postData') or save to Firebase Realtime Database (dataStoreProvider.name = 'firebase').

For postData type, you should receive and save data to your own database. For example, in the case with PHP your https://apidomain.com/save/point/ should look like:

<?php
header('Access-Control-Allow-Origin: *');
$data = file_get_contents('php://input');
// there you should save data to the DB

To be continued...