
Security News
New CVE Forecasting Tool Predicts 47,000 Disclosures in 2025
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
postcss-load-plugins
Advanced tools
npm i -D postcss-load-plugins
npm i -S|-D postcss-plugin
Install plugins and save them to your package.json dependencies/devDependencies.
package.json
Create postcss
section in your projects package.json
App
|– client
|– public
|
|- package.json
{
"postcss": {
"plugins": {
"postcss-plugin": {}
}
}
}
.postcssrc
Create .postcssrc
file
App
|– client
|– public
|
|-.postcssrc
|- package.json
{
"plugins": {
"postcss-plugin": {}
}
}
postcss.config.js
Create a postcss.config.js
file.
App
|– client
|– public
|
|- postcss.config.js
|- package.json
module.exports = (ctx) => {
plugins: {
'postcss-plugin': options
}
}
module.exports = (ctx) => {
plugins: [
require('postcss-plugin')(ctx.plugin)
]
}
Plugin options can take the following values.
null
: Plugin loads with defaults.
'postcss-plugin': null
[Object]
: Plugin loads with given options.
'postcss-plugin': { option: '', option: '' }
false
: Plugin will not be loaded.
'postcss-plugin': false
Plugin order is determined by declaration in the plugins section.
{
plugins: {
'postcss-plugin': false, // plugins[0]
'postcss-plugin': false, // plugins[1]
'postcss-plugin': {} // plugins[2]
}
}
When using a function (postcss.config.js)
, it is possible to pass context to postcss-load-plugins
, which will be evaluated before loading your plugins. By default ctx.env (process.env.NODE_ENV)
and ctx.cwd (process.cwd())
are available.
postcss.config.js
module.exports = (ctx) => {
plugins: {
postcss-import: null,
postcss-bem: ctx.bem || null,
cssnano: ctx.env === 'development' ? false : null
}
}
const { readFileSync } = require('fs')
const postcss = require('postcss')
const pluginsrc = require('postcss-load-plugins')
const css = readFileSync('index.css', 'utf8')
const ctx = { bem: { style: 'bem' } }
pluginsrc(ctx).then((plugins) => {
postcss(plugins)
.process(css)
.then(({ css }) => console.log(css))
}))
Michael Ciniawsky |
Mateusz Derks |
FAQs
Autoload Plugins for PostCSS
The npm package postcss-load-plugins receives a total of 380,558 weekly downloads. As such, postcss-load-plugins popularity was classified as popular.
We found that postcss-load-plugins demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.