@avensia-oss/critical-css
TypeScript icon, indicating that this package has built-in type declarations

2.1.1 • Public • Published

critical-css

A library that takes a chunk of CSS and extracts only the parts that are required to correctly render a specific chunk of HTML

Usage

The library only exports one function: parse(), which returns an object with a method generate(), which returns a string with only the CSS that is required in order to correctly display the passed HTML.

Example

import { parse } from '@avensia-oss/critical-css';

const css = '.main { display: block; } .unused { display: inline }';
const html = '<div class="main"><span>Hello, world</span></div>';

const parsedCss = parse(css);
const criticalCss = parsedCss.generate(html);

expect(criticalCss).toBe('.main { display: block; }');

Developing

To develop in this library, clone the repository and run npm install. To build the release version, run npm build or run tests by running npm test.

Readme

Keywords

Package Sidebar

Install

npm i @avensia-oss/critical-css

Weekly Downloads

6

Version

2.1.1

License

MIT

Unpacked Size

15.2 kB

Total Files

5

Last publish

Collaborators

  • avensia-oss