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 🙏

© 2024 – Pkg Stats / Ryan Hefner

postcss-visitor

v1.0.0

Published

Transform CSS with visitor-based plugins

Downloads

3

Readme

PostCSS Visitor

NPM Version Build Status Licensing Changelog Gitter Chat

PostCSS Visitor lets you transform CSS with visitors. No more walking the CSS tree with every plugin.

require('postcss-visitor').process(
	'figure { width: 100%; height: 100%; } ',
	[{
		decl(node) {
			if (node.prop === 'width') node.remove()
		}
	}]
).then(
	(result) => result.css // figure { height: 100%; }
)

PostCSS Visitor also lets you create PostCSS plugins that use visitors.

// create a visitor plugin
module.exports = require('postcss-visitor').plugin(
	'postcss-visitor-example',
	(/* Options */) => ({
		decl(node) {
			// do something with a declaration
		}
	})
)

By default, visitor plugins still work with PostCSS.

require('postcss')([
	// use the visitor plugin as a postcss plugin
	require('postcss-visitor-example')(/* Options */)
])

The best practice is to use visitor plugins with PostCSS Visitor. These plugins will cooperate with each other and run much faster.

require('postcss')([
	// use plugins as visitors
	require('postcss-visitor')([
		require('postcss-visitor-example').asVisitor(/* Options */),
		require('postcss-visitor-another-example').asVisitor(/* Options */),
		require('postcss-visitor-a-third-example').asVisitor(/* Options */)
	])
])

All PostCSS Visitor plugins run in the order of the tree first, and then the order they are added. This prevents many conflicts in standard PostCSS plugins and allows new kinds of plugins to be written.

Options

If the options passed into PostCSS Visitor are an array, then the array will be used to load any plugins or transforms.

If the options are an object, then the plugins key will be used to load any plugins or transforms.

Plugins will be executed before walkin the DOM, and they will receive as an argument the options passed into PostCSS Visitor.

Visitors

Visitors are created by assigning functions to keys on an object. Anytime a node with a type matching that key is encountered, its function will be run.

Visitors may target constructs like at-rules, rules, and declarations, but they may also target more specific nodes, like a pseudo selector within a selector, or a function within a value.

Read VISITORS.md to learn more.

API

The PostCSS Visitor API allows you to create visitor-based plugins that still work with PostCSS on their own.

Read API.md to learn more.

Usage

Add PostCSS Visitor to your build tool:

npm install postcss-visitor --save-dev

Node

Use PostCSS Visitor to process your CSS:

require('postcss-visitor').process(YOUR_CSS, /* options, plugins, visitors */)

PostCSS

Add PostCSS to your build tool:

npm install postcss --save-dev

Use PostCSS Visitor as a plugin:

postcss([
	require('postcss-visitor')(/* options, plugins, visitors */)
]).process(YOUR_CSS, /* options */)

Gulp

Add Gulp PostCSS to your build tool:

npm install gulp-postcss --save-dev

Use PostCSS Visitor in your Gulpfile:

var postcss = require('gulp-postcss')

gulp.task('css', function () {
	return gulp.src('./src/*.css').pipe(
		postcss([
			require('postcss-visitor')(/* options, plugins, visitors */)
		])
	).pipe(
		gulp.dest('.')
	)
})

Grunt

Add Grunt PostCSS to your build tool:

npm install grunt-postcss --save-dev

Use PostCSS Visitor in your Gruntfile:

grunt.loadNpmTasks('grunt-postcss')

grunt.initConfig({
	postcss: {
		options: {
			use: [
				require('postcss-visitor')(/* options, plugins, visitors */)
			]
		},
		dist: {
			src: '*.css'
		}
	}
})