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

beastcss

v2.1.3

Published

Inline critical CSS and async load the rest.

Downloads

1,770

Readme

Beastcss

Inline critical CSS and asynchronous load the rest.

Installation

npm i -D beastcss

or

yarn add -D beastcss

or

pnpm add -D beastcss

Usage

import fs from 'fs/promises';
import Beastcss from 'beastcss';

const beastcss = new Beastcss({
  // optional configuration (see below).
});

(async () => {
  // get the html string to process
  const html = await fs.readFile('index.html', 'utf-8');

  // call the process method of the previously instantiated Beastcss class
  const processedHTML = await beastcss.process(html);

  // do something with the processed html string
  await fs.writeFile('index.html', processedHTML, 'utf-8');
})();

The resulting HTML string will have its critical CSS inlined and any corresponding external stylesheet links tweaked to be loaded asynchronously by a browser.

Prune Source

Process one or more html strings then call the pruneSources() method to remove critical css from external stylesheet files.

const Beastcss = require('beastcss');

const beastcss = new Beastcss({
  pruneSource: true, // required
  // ... others options
});

(async () => {
  // process html strings sequentially
  const processedHtml = await beastcss.process(html);
  const processedHtml2 = await beastcss.process(html2);
  const processedHtml3 = await beastcss.process(html3);

  // or process html strings in parallel
  const processedHtmls = await Promise.all([
    beastcss.process(html),
    beastcss.process(html2),
    beastcss.process(html3),
  ]);

  // Remove critical css from external stylesheets
  await beastcss.pruneSources();
})();

API Reference

process(html)

Apply critical CSS processing to the html.

async function process(
  html: string,
  processId?: string | number
): Promise<string>;

Notes: processId parameter is passed to the logger. It helps to identify logging for each call to the process method in case multiple calls to the method are made in parallel.

pruneSources()

Remove all previously collected critical CSS from external stylesheets.

async function pruneSources(processId?: string | number): Promise<void>;

getScriptCSPHash()

Returns the sha256 hash of the script containing the event handlers for asynchronously loaded external stylesheets.

This is useful for Content Security Policy.

function getScriptCSPHash(): string | null;

clear()

Free up memory by clearing cached stylesheets and critical selectors collected when pruneSource option is enabled.

function clear(): void;

setVerbosity()

Set the logging verbosity.

function setVerbosity(
  logLevel?: 'debug' | 'info' | 'warn' | 'error' | 'silent'
): void;

Notes: use the level set in the logLevel option if no parameter is passed.

Options

path

Type: String

Default: process.cwd()

Location of the absolute base path of CSS files. Set to the current working directory by default.

publicPath

Type: String

Default: ''

Public path to remove when finding actual CSS resource paths.

external

Type: Boolean

Default true

Process external stylesheets <link href="path/to/external/stylesheet.css" rel="stylesheet">.

internal

Type: Boolean

Default true

Process internal stylesheets <style></style>.

additionalStylesheets

Type: Array

Default []

Array of Globs for matching additional stylesheets to be used while looking for critical CSS.

externalThreshold

Type: Number

Default 0

Completely inline external stylesheets below a given size in bytes.

minifyCss

Type: Boolean

Default: false

Minify css with lightningcss.

minifyTargets

Type: string[]

Default ['> 0.5%', 'last 2 versions', 'Firefox ESR', 'not dead']

The browser targets passed to lightningcss when minifying css.

merge

Type: Boolean

Default true

Merge <style> tags into a single one.

pruneSource

Type: Boolean

Default false

Remove critical CSS from external stylesheets. Critical css selectors are collected on every call to the process() method. To actually remove critical css from external stylesheets, the pruneSources() method must be called last.

preloadExternalStylesheets

Type: Boolean

Default false

Add a link tag to preload external stylesheets.

asyncLoadExternalStylesheets

Type: Boolean

Default true

Make the loading of external stylesheets asynchronous.

autoRemoveStyleTags

Type: Boolean

Default false

Remove style tags containing critical css once the corresponding external stylesheet is loaded.

Notes: This avoid duplicate css rules.

eventHandlers

Type: 'attr' | 'script'

Default: 'attr'

Weither event handlers should be inline inside link tag attribute ('attr') or a separate script ('script').

Notes: Setting it to 'script' can be useful for Content Security Policy.

noscriptFallback

Type: Boolean

Default false

Add a <noscript> tag as an alternative to load external stylesheets in case JS is disabled.

Notes: JS is used if the asyncLoadExternalStylesheets option or the autoRemoveStyleTags option is enabled.

exclude

Type: ((stylesheetPath: string) => boolean) | RegExp

Exclude matching external stylesheets from processing.

whitelist

Type: String[]|RegExp[]

An array of css selectors to be considered as critical CSS.

fontFace

Type: Boolean

Default: false

Inline critical @font-face rules.

keyframes

Type: Boolean

Default: true

Inline critical @keyframes rules.

fs

Type: Object

Default: built-in NodeJS fs module.

Custom file system to read, write and remove external stylesheets. Methods with callback or promise are supported.

logLevel

Type: String (see Log Level)

Default: 'info'

The level of logging verbosity.

logger

Type: Object (see Custom Logger Interface)

Provide a custom Logger.

Log Level

Controls logging verbosity by specifying the level the logger should use. The logger will not produce output for any logging level below the specified level. The levels available in order of verbosity are:

  • 'debug'
  • 'info'
  • 'warn'
  • 'error'
  • 'silent'

Custom Logger Interface

interface Logger {
  debug: (msg: string, processId?: string | number) => void;
  info: (msg: string, processId?: string | number) => void;
  warn: (msg: string, processId?: string | number) => void;
  error: (msg: string, processId?: string | number) => void;
}