Baike.dev
All toolsAI codingTrendingOpen sourceNewsSubmit
Log in
< Back to tools
P

parker

> 编程语言
Open source

Stylesheet analysis tool.

2.4K stars0 likes1 views
WebsiteGitHub

About

Stylesheet analysis tool.

Parker

Parker is a stylesheet analysis tool. It runs metrics on your stylesheets and will report on their complexity.

Installation

Install with npm:

npm install -g parker

Usage

Measuring Local Stylesheets

parker a.css b.css c.css
parker css/

Measuring a Remote Stylesheet Using Curl

curl http://www.katiefenn.co.uk/css/shuttle.css -s | parker -s

Output JSON

parker example.css --format=json

Programmatic usage

After installing parker as a dependency in your project, you can use it as follows:

var Parker = require('parker/lib/Parker');
var metrics = require('parker/metrics/All'); // Or an array of the metrics you want to measure

var file = fs.readFile('test.css', function (err, data) {
	if (err) throw err;

	var parker = new Parker(metrics);
	var results = parker.run(data.toString());

	// Do something with results
});

Documentation

Documentation can be found in markdown format the docs folder.

Testing

From the repo root:

npm install
npm test

Contributing

Pull requests, issues, new unit tests, code reviews and good advice are all things that would make a difference to Parker. You can even contribute by telling me how useful Parker is to you; please let me know on Twitter at @katie_fenn. Any time generously donated to helping make Parker better is gratefully accepted, and in return I shall do my best to merge contributions.

Please target pull requests at the "develop" branch.

About

Parker is my first open source project, and your suggestions and feedback are welcome. The project is in a pre-beta phase and is liable to change at any time. Parker is named for the character Parker from Gerry Anderson's Thunderbirds, without which my interest in technology and computers would certainly not be what it is today. Parker is Nosey about your stylesheets.

Issues· 0 open

View all issuesOpen on GitHub

No open issues yet, or sync has not completed.

> Tags

JavaScript

No comments yet. Be the first to share.

> Details

PublishedAug 1, 2026
UpdatedSep 17, 2026
Category编程语言
PricingOpen source

> Related tools

T
TypeScript
JavaScript 的超集,为前端与全栈提供静态类型
P
Python
通用编程语言,广泛用于 Web、数据与 AI
G
Go
Google 推出的简洁高效系统语言