@adobe/css-tools provides a modern CSS parser and stringifier with comprehensive TypeScript support. It can parse CSS into an Abstract Syntax Tree (AST) and convert the AST back to CSS with various formatting options.
npm install @adobe/css-toolsParses CSS code and returns an Abstract Syntax Tree (AST).
code(string) - The CSS code to parseoptions(object, optional) - Parsing optionssilent(boolean) - Silently fail on parse errors instead of throwing. Whentrue, errors are collected inast.stylesheet.parsingErrorssource(string) - File path for better error reportingpreserveFormatting(boolean) - Insert whitespace AST nodes and store raw formatting properties on nodes for identity round-trip. Whentrue, whitespace between siblings is preserved asCssWhitespaceASTnodes, and raw formatting properties (rawPrelude,rawBetween,rawValue,rawSource) are stored on relevant nodes. Default:false
CssStylesheetAST- The parsed CSS as an AST
import { parse } from '@adobe/css-tools';
const css = `
.example {
color: red;
font-size: 16px;
}
`;
const ast = parse(css);
console.log(ast.stylesheet.rules);Converts a CSS AST back to CSS string with configurable formatting.
ast(CssStylesheetAST) - The CSS AST to stringifyoptions(CompilerOptions, optional) - Stringification optionsindent(string) - Indentation string (default:' ')compress(boolean) - Whether to compress/minify the output (default:false)identity(boolean) - Reproduce the original CSS exactly as parsed. RequirespreserveFormatting: trueduring parsing. Walks the AST including whitespace nodes and uses raw formatting properties to reconstruct the original output. Inserted or modified nodes without raw properties are emitted in beautified format. Falls back to beautified output whenpreserveFormattingwas not used. Default:falseremoveEmptyRules(boolean) - Remove rules with empty declaration blocks from the output. Works in all modes (beautified, compressed, identity). Default:false
string- The formatted CSS string
import { parse, stringify } from '@adobe/css-tools';
const css = '.example { color: red; }';
const ast = parse(css);
// Pretty print
const formatted = stringify(ast, { indent: ' ' });
console.log(formatted);
// Output:
// .example {
// color: red;
// }
// Compressed
const minified = stringify(ast, { compress: true });
console.log(minified);
// Output: .example{color:red}The root AST node representing a complete CSS stylesheet.
type CssStylesheetAST = {
type: CssTypes.stylesheet;
stylesheet: {
source?: string;
rules: Array<CssAtRuleAST | CssWhitespaceAST>;
parsingErrors?: CssParseError[];
};
};Represents a CSS rule (selector + declarations).
type CssRuleAST = {
type: CssTypes.rule;
selectors: string[];
declarations: CssDeclarationAST[];
position?: CssPosition;
parent?: CssStylesheetAST;
};Represents a CSS property declaration.
type CssDeclarationAST = {
type: CssTypes.declaration;
property: string;
value: string;
position?: CssPosition;
parent?: CssRuleAST;
};Represents a CSS @media rule.
type CssMediaAST = {
type: CssTypes.media;
media: string;
rules: CssRuleAST[];
position?: CssPosition;
parent?: CssStylesheetAST;
};Represents a CSS @keyframes rule.
type CssKeyframesAST = {
type: CssTypes.keyframes;
name: string;
keyframes: CssKeyframeAST[];
position?: CssPosition;
parent?: CssStylesheetAST;
};Represents source position information.
type CssPosition = {
source?: string;
start: {
line: number;
column: number;
};
end: {
line: number;
column: number;
};
};Represents a parsing error.
type CssParseError = {
message: string;
reason: string;
filename?: string;
line: number;
column: number;
source?: string;
};Options for the stringifier.
type CompilerOptions = {
indent?: string; // Default: ' '
compress?: boolean; // Default: false
identity?: boolean; // Default: false
removeEmptyRules?: boolean; // Default: false
};When parsing malformed CSS, you can use the silent option to collect errors instead of throwing:
import { parse } from '@adobe/css-tools';
const malformedCss = `
body { color: red; }
{ color: blue; } /* Missing selector */
.valid { background: green; }
`;
const result = parse(malformedCss, { silent: true });
if (result.stylesheet.parsingErrors) {
result.stylesheet.parsingErrors.forEach(error => {
console.log(`Error at line ${error.line}: ${error.message}`);
});
}
// Valid rules are still parsed
console.log('Valid rules:', result.stylesheet.rules.length);Enable source tracking for better error reporting:
import { parse } from '@adobe/css-tools';
const css = 'body { color: red; }';
const ast = parse(css, { source: 'styles.css' });
const rule = ast.stylesheet.rules[0];
console.log(rule.position?.source); // "styles.css"
console.log(rule.position?.start); // { line: 1, column: 1 }
console.log(rule.position?.end); // { line: 1, column: 20 }import { parse, stringify } from '@adobe/css-tools';
const css = `
@media (max-width: 768px) {
.container {
padding: 10px;
}
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
`;
const ast = parse(css);
// Access media rules
const mediaRule = ast.stylesheet.rules.find(rule => rule.type === 'media');
console.log(mediaRule.media); // "(max-width: 768px)"
// Access keyframes
const keyframesRule = ast.stylesheet.rules.find(rule => rule.type === 'keyframes');
console.log(keyframesRule.name); // "fadeIn"import { parse, stringify } from '@adobe/css-tools';
const css = '.example{color:red;font-size:16px}';
const ast = parse(css);
// Custom indentation
const formatted = stringify(ast, { indent: ' ' });
console.log(formatted);
// Output:
// .example {
// color: red;
// font-size: 16px;
// }
// Compressed with no spaces
const compressed = stringify(ast, { compress: true });
console.log(compressed);
// Output: .example{color:red;font-size:16px}Reproduce the original CSS exactly as it was written, preserving all whitespace, comments, and formatting:
import { parse, stringify } from '@adobe/css-tools';
const css = '.example { color: red; font-size:16px }';
// Parse with preserveFormatting to store original source
const ast = parse(css, { preserveFormatting: true });
// Stringify with identity mode to reproduce the original CSS
const output = stringify(ast, { identity: true });
console.log(output === css); // trueWhen preserveFormatting was not used during parsing, identity mode falls back to beautified output.
Strip rules with empty declaration blocks from the output:
import { parse, stringify } from '@adobe/css-tools';
const css = '.empty {} .keep { color: red; }';
const ast = parse(css);
// Beautified without empty rules
const output = stringify(ast, { removeEmptyRules: true });
console.log(output);
// Output:
// .keep {
// color: red;
// }
// Also works with compressed mode
const compressed = stringify(ast, { compress: true, removeEmptyRules: true });
console.log(compressed);
// Output: .keep{color:red;}The library provides comprehensive TypeScript support with full type definitions for all AST nodes and functions:
import { parse, stringify, type CssStylesheetAST } from '@adobe/css-tools';
const css: string = '.example { color: red; }';
const ast: CssStylesheetAST = parse(css);
const output: string = stringify(ast);- The parser is optimized for large CSS files
- AST nodes are lightweight and memory-efficient
- Stringification is fast and supports streaming for large outputs
- Consider using
compress: truefor production builds to reduce file size
The library works in all modern browsers and Node.js environments. For older environments, you may need to use a bundler with appropriate polyfills.