PostCSS Architecture

General overview of PostCSS architecture. It can be useful for everyone who wish to contribute to core or develop better understanding of the tool.

Table of Contents

Overview

This section describes ideas lying behind PostCSS

Before diving deeper into development of PostCSS let’s briefly describe what is PostCSS and what is not.

PostCSS

  • is NOT a style preprocessor like Sass or Less.

    It does not define custom syntax and semantic, it’s not actually a language. PostCSS works with CSS and can be easily integrated with tools described above. That being said any valid CSS can be processed by PostCSS.

  • is a tool for CSS syntax transformations

    It allows you to define custom CSS like syntax that could be understandable and transformed by plugins. That being said PostCSS is not strictly about CSS spec but about syntax definition manner of CSS. In such way you can define custom syntax constructs like at-rule, that could be very helpful for tools build around PostCSS. PostCSS plays a role of framework for building outstanding tools for CSS manipulations.

  • is a big player in CSS ecosystem

    Large amount of lovely tools like Autoprefixer, Stylelint, CSSnano were built on PostCSS ecosystem. There is big chance that you already use it implicitly, just check your node_modules :smiley:

Workflow

This is high level overview of whole PostCSS workflow

workflow

As you can see from diagram above, PostCSS architecture is pretty straightforward but some parts of it could be misunderstood.

From diagram above you can see part called Parser, this construct will be described in details later on, just for now think about it as a structure that can understand your CSS like syntax and create object representation of it.

That being said, there are few ways to write parser

  • Write a single file with string to AST transformation

    This method is quite popular, for example, the Rework analyzer was written in this style. But with a large code base, the code becomes hard to read and pretty slow.

  • Split it into lexical analysis/parsing steps (source string → tokens → AST)

    This is the way of how we do it in PostCSS and also the most popular one. A lot of parsers like Babylon (parser behind Babel), CSSTree were written in such way. The main reasons to separate tokenization from parsing steps are performance and abstracting complexity.

Let think about why second way is better for our needs.

First of all because string to tokens step takes more time than parsing step. We operate on large source string and process it char by char, this is why it is very inefficient operation in terms of performance and we should perform it only once.

But from other side tokens to AST transformation is logically more complex so with such separation we could write very fast tokenizer (but from this comes sometimes hard to read code) and easy to read (but slow) parser.

Summing it up splitting in two steps improve performance and code readability.

So now lets look more closely on structures that play main role in PostCSS workflow.

Core Structures

  • Tokenizer ( lib/tokenize.es6 )

    Tokenizer (aka Lexer) plays important role in syntax analysis.

    It accepts CSS string and returns list of tokens.

    Token is a simple structure that describes some part of syntax like at-rule, comment or word. It can also contain positional information for more descriptive errors.

    For example if we consider following css

    1. .className { color: #FFF; }

    corresponding tokens representation from PostCSS will be

    1. [
    2. ["word", ".className", 1, 1, 1, 10]
    3. ["space", " "]
    4. ["{", "{", 1, 12]
    5. ["space", " "]
    6. ["word", "color", 1, 14, 1, 18]
    7. [":", ":", 1, 19]
    8. ["space", " "]
    9. ["word", "#FFF" , 1, 21, 1, 23]
    10. [";", ";", 1, 24]
    11. ["space", " "]
    12. ["}", "}", 1, 26]
    13. ]

    As you can see from the example above single token represented as a list and also space token doesn’t have positional information.

    Lets look more closely on single token like word. As it was said each token represented as a list and follow such pattern.

    1. const token = [
    2. // represents token type
    3. 'word',
    4. // represents matched word
    5. '.className',
    6. // This two numbers represent start position of token.
    7. // It's optional value as we saw in example above,
    8. // tokens like `space` don't have such information.
    9. // Here the first number is line number and the second one is corresponding column.
    10. 1, 1,
    11. // Next two numbers also optional and represent end position for multichar tokens like this one. Numbers follow same rule as was described above
    12. 1, 10
    13. ];

    There are many patterns how tokenization could be done, PostCSS motto is performance and simplicity. Tokenization is complex computing operation and take large amount of syntax analysis time ( ~90% ), that why PostCSS’ Tokenizer looks dirty but it was optimized for speed. Any high-level constructs like classes could dramatically slow down tokenizer.

    PostCSS’ Tokenizer use some sort of streaming/chaining API where you exposes nextToken() method to Parser. In this manner we provide clean interface for Parser and reduce memory usage by storing only few tokens and not whole list of tokens.

  • Parser ( lib/parse.es6, lib/parser.es6 )

    Parser is main structure that responsible for syntax analysis of incoming CSS. Parser produces structure called Abstract Syntax Tree (AST) that could then be transformed by plugins later on.

    Parser works in common with Tokenizer and operates over tokens not source string, as it would be very inefficient operation.

    It use mostly nextToken and back methods provided by Tokenizer for obtaining single or multiple tokens and than construct part of AST called Node

    There are multiple Node types that PostCSS could produce but all of them inherit from base Node class.

  • Processor ( lib/processor.es6 )

    Processor is a very plain structure that initializes plugins and run syntax transformations. Plugin is just a function registered with postcss.plugin call.

    It exposes quite few public API methods. Description of them could be found on api.postcss.org/Processor

  • Stringifier ( lib/stringify.es6, lib/stringifier.es6 )

    Stringifier is a base class that translates modified AST to pure CSS string. Stringifier traverse AST starting from provided Node and generate raw string representation of it calling corresponding methods.

    The most essential method is Stringifier.stringify that accepts initial Node and semicolon indicator. You can learn more by checking stringifier.es6

API Reference

More descriptive API documentation could be found here