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 🙏

© 2025 – Pkg Stats / Ryan Hefner

postcss-parts

v1.0.0

Published

PostCSS plugin for CSS partitioning

Downloads

11

Readme

postcss-parts

This is a PostCSS plugin that filters comment-delimited parts of a CSS file.

Example

Input

.foo {
  display: block;
}

/* PARTS before=critical */

.bar {
  display: inline;
}

Output

.foo {
  display: block;
}

Installation

Step 1: Install plugin:

npm install --save-dev postcss postcss-parts

Step 2: Check you project for existed PostCSS config: postcss.config.js in the project root, "postcss" section in package.json or postcss in bundle config.

If you do not use PostCSS, add it according to official docs and set this plugin in settings.

Step 3: Add the plugin to plugins list:

module.exports = {
  plugins: [
+   require('postcss-parts'),
    require('autoprefixer')
  ]
}

Usage

In the CSS file

The parts to be filtered from the source CSS file are delimited by specifically formatted CSS comments. These comments are only respected on the CSS root level in between CSS rules. It is not possible to split a rule/at-rule/media query into two different parts.

Each delimiting comment MUST start with PARTS and then SHOULD have at least one of the following definitions:

  • A name definition of the part of the CSS file before the comment: before=name
  • A name definition of the part of the CSS file after the comment: after=name

Example: A comment separating a part before it named "critical" from a part after it named "other":

/* PARTS before=critical after=noncritical */

Both of the part names are case-sensitive and MUST NOT contain spaces. In either case, the named part before or after the comment is delimited by the previous (or next, respectively) PARTS comment or the start/end of the CSS file. Any PARTS comment acts as a delimiter; the behaviour does NOT depend on that comment's name definitions. In fact, it is possible to define the same part of the CSS file with two different names in its delimiter comments:

/* ... some CSS that belongs to Part 1 ... */

/* PARTS before=Part1 after=Part2 */

/* ... some CSS that belongs to Part 2 ... */

/* PARTS before=PartTwo after=PartThree */

/* ... some CSS that belongs to Part 3 ... */

The CSS that belongs to Part 2 can be referred to by both Part2 and PartTwo.

It is also possible to use the same name for multiple parts of the CSS file. Each of these parts will be included in the resulting CSS if that name is selected in the PostCSS configuration.

The PARTS comments themselves will NOT be included int he resulting CSS.

In the PostCSS configuration

The plugin expects a configuration object with a "parts" property. This is an example for a possible configuration using postcss.config.js:

module.exports = () => ({
  plugins: [
    require('autoprefixer'),
    require('postcss-parts')({ parts: ['critical', 'critical2'] }),
    require('cssnano'),
  ]
});

The value of the parts property is an array of strings that lists the parts to be included in the result CSS. It is also possible to use a string with all the parts separated by spaces:

require('postcss-parts')({ parts: 'critical critical2' })