Socket
Book a DemoInstallSign in
Socket

critical-css-inliner

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

critical-css-inliner

Inline critical CSS in HTML page

latest
Source
npmnpm
Version
1.3.0
Version published
Maintainers
1
Created
Source

critical-css-inliner

Critical-css-inliner allows you to extract and inline critical (above-the-fold) CSS in HTML page. It might be helpful to speed up First Contentful Paint.

How it works

  • Critical-css-inliner finds all external stylesheets (<link rel="stylesheet" href="...">).
  • It extracts critical CSS (above-the-fold).
  • It inlines critical CSS in HTML page.
  • It removes critical CSS from external stylesheets.
  • It makes external stylesheets asynchronous (using loadCSS)

Critical-css-inliner uses Critical-css-parser under the hood, so IT ALSO SUPPORTS ADAPTIVE DESIGN (BOTH DESKTOP AND MOBILE VERSIONS)!

Critical-css-inlinerCritical
execution time: 7.4 sexecution time: 4.7 s
result: correctresult: wrong
inlined: 15.8 KB (less is better)inlined: 16.4 KB (less is better)
auto extracting: trueauto extracting: true
CrittersPenthouse
execution time: 3.5 sexecution time: 3.5 s
result: correctresult: wrong
inlined: 15.2 KB (less is better)inlined: 4.7 KB (less is better)
auto extracting: falseauto extracting: false

Appropriate webpack plugin: webpack-critical-css-inliner

Installation

npm install --save-dev critical-css-inliner

// or

yarn add --dev critical-css-inliner

Docs

const criticalCSSInliner = require('critical-css-inliner');

await criticalCSSInliner({
  // Your entrypoint
  base: 'dist/',

  // HTML source file
  src: 'index.html',

  // HTML target file
  target: 'index-critical.html',

  // Add Google Fonts to critical CSS
  inlineGoogleFonts: true,

  // Minify all styles
  minify: true,

  // ignore styles from the following stylesheets
  ignoreStylesheets: [/bootstrap/],

  // inline styles with the following CSS rules
  whitelist: /#foo|\.bar/
  
});

Example

const criticalCSSInliner = require('critical-css-inliner');

(async () => {

  await criticalCSSInliner({
    base: 'dist/',
    src: 'index.html',
    target: 'index-critical.html',
    inlineGoogleFonts: true,
    minify: true,
    ignoreStylesheets: [/bootstrap/],
    whitelist: /#foo|\.bar/
  });

})();

Usage

criticalCSSInliner

Pass options to criticalCSSInliner({ ... }).

criticalCSSInliner({...}) returns:

<Promise<true>>

License

MIT license

Keywords

critical

FAQs

Package last updated on 01 Jan 2023

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.