GithubHelp home page GithubHelp logo

hulk4fe / html-critical-webpack-plugin Goto Github PK

View Code? Open in Web Editor NEW

This project forked from anthonygore/html-critical-webpack-plugin

0.0 0.0 0.0 236 KB

A webpack plugin that will extract critical CSS. Now supports Webpack v4.

License: MIT License

JavaScript 78.37% CSS 21.63%

html-critical-webpack-plugin's Introduction

HTML Critical Webpack Plugin npm version CircleCI

This plugin extracts critical CSS and runs after all files have been emitted so you can use it after Mini CSS Extract Plugin and HTML Webpack Plugin.

Check out the demo or read the blog post Critical CSS and Webpack: Automatically Minimize Render-Blocking CSS for more details on usage.

Installation

npm i --save-dev html-critical-webpack-plugin

Note: As critical itself has a dependency on puppeteer in order to run Headless Chrome, consumers of this plugin will need to make sure that their build environment (local, CI, etc) where they are running Webpack with this plugin has the necessary operating system packages installed. See this page for more information on troubleshooting puppeteer.

Example

...

const HtmlCriticalWebpackPlugin = require("html-critical-webpack-plugin");

module.exports = {
  mode: 'production',
  plugins: [
    new HtmlWebpackPlugin({ ... }),
    new MiniCssExtractPlugin({ ... }),
    new HtmlCriticalWebpackPlugin({
      base: path.resolve(__dirname, 'dist'),
      src: 'index.html',
      dest: 'index.html',
      inline: true,
      minify: true,
      extract: true,
      width: 375,
      height: 565,
      penthouse: {
        blockJSRequests: false,
      }
    })
  ]
  ...
};

Note: Order is import here since critical, the underlying package used by this plugin, only operates against the file system, and not against webpack's build time compilation. The order of operations by critical is as such:

  1. Reads the file from disk as defined by the src option
  2. Extracts the CSS from that file that is deemed as "critical"
  3. Writes the new file back to disk with that critical CSS inlined, at the location of the dest option

Development

Local environment

Since the main dependency of this project, critical, depends on an environment that supports Headless Chrome, Docker has been provided to support local development of this project.

After you have installed Docker, you can do the following to get setup:

  1. Start the container - docker-compose up -d
  2. SSH into the container - docker exec -it html-critical-webpack-plugin_nodejs_1 /bin/bash
  3. Install dependencies - rm -rf node_modules && npm install (this ensures Linux specific dependencies get installed)

Now you can run the project's npm scripts like usual:

  1. Run unit tests - npm run test
  2. Run the build - npm run ci

Note: changes are bi-directional

Learn more about Docker here or configuring Headless Chrome for your own machine.

Workflows

  1. To run unit tests - npm run test
  2. To build the project - npm run ci
  3. To build the project for release - npm run build

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.