![38% of CISOs Fear They’re Not Moving Fast Enough on AI](https://cdn.sanity.io/images/cgdhsj6q/production/faa0bc28df98f791e11263f8239b34207f84b86f-1024x1024.webp?w=400&fit=max&auto=format)
Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
css-selector-extract
Advanced tools
With selector extracting, it is possible to extract certain CSS selectors (RegEx can be used to match selectors) from CSS code. This is especially useful if you want to extract only a few CSS classes from a huge library or framework.
const cssSelectorExtract = require('css-selector-extract');
const options = {
// CSS source code as string.
css: '.btn { } .btn-alert { } .btn-success { }',
// Array of selectors which should get extracted.
filters: ['.btn']
};
// Asynchronous:
cssSelectorExtract.process(options).then((extractedCss) => {
console.log(extractedCss); // Outputs: `.btn { }`.
});
// Synchronous:
const extractedCss = cssSelectorExtract.processSync(options);
console.log(extractedCss); // Outputs: `.btn { }`.
const cssSelectorExtract = require('css-selector-extract');
const options = {
// CSS source code as string.
css: '.btn { } .btn-alert { } .btn-success { }',
// Array of selector filter objects with selectors
// which should get extracted and replaced.
filters: [{ selector: '.btn', replacement: '.button' }]
};
// Asynchronous:
cssSelectorExtract.process(options).then((extractedCss) => {
console.log(extractedCss); // Outputs: `.button { }`.
});
const cssSelectorExtract = require('css-selector-extract');
const options = {
css: '.btn { } .btn-alert { }',
filters: [/^\..+-alert/]
};
cssSelectorExtract.process(options).then((extractedCss) => {
console.log(extractedCss); // Outputs: `.btn-alert { }`.
});
const cssSelectorExtract = require('css-selector-extract');
const options = {
css: '.btn { } .btn-alert { }',
filters: [{ selector: /^\.btn(.*)/, replacement: '.button$1' }]
};
cssSelectorExtract.process(options).then((extractedCss) => {
console.log(extractedCss); // Outputs: `.button { } .button-alert { }`.
});
Install the corresponding postcss syntax plugin (e.g. postcss-scss or postcss-less).
const cssSelectorExtract = require('css-selector-extract');
const postcssScss = require('postcss-scss');
const options = {
css: '.nested { .selector { } }',
filters: ['.nested'],
postcssSyntax: postcssScss
};
cssSelectorExtract.process(options).then((extractedCss) => {
console.log(extractedCss);
});
Usually css-selector-extract
removes all nodes which do not match the given selectors. However under some circumstances it might be useful to preserve the original line numbers (e.g. to keep source map references intact).
const cssSelectorExtract = require('css-selector-extract');
const options = {
css: '.multiple { } .selectors {}',
filters: ['.some-selector'],
preserveLines: true
};
cssSelectorExtract.process(options).then((extractedCss) => {
// Outputs the extracted selector(s) with empty lines where
// other selectors got removed to preserve line numbers.
console.log(extractedCss);
});
import { process, processSync } from 'css-selector-extract';
const options = {
// CSS source code as string.
css: '.btn { } .btn-alert { } .btn-success { }',
// Array of selectors which should get extracted.
filters: ['.btn']
};
// Asynchronous:
process(options).then((extractedCss) => {
console.log(extractedCss); // Outputs: `.btn { }`.
});
// Synchronous:
const extractedCss = processSync(options);
console.log(extractedCss); // Outputs: `.btn { }`.
With version 3.0.0 css-selector-extract takes an object as it's only parameter.
const cssSelectorExtract = require('css-selector-extract');
const postcssScss = require('postcss-scss');
// New way:
const options = {
css: '.btn { } .btn-alert { } .btn-success { }',
filters: ['.btn'],
postcssSyntax: postcssScss
};
cssSelectorExtract.process(options);
cssSelectorExtract.processSync(options);
// Old way:
const css = '.btn { } .btn-alert { } .btn-success { }';
const selectorFilters = ['.btn'];
cssSelectorExtract.process(css, selectorFilters, postcssScss);
cssSelectorExtract.processSync(css, selectorFilters, postcssScss);
See CONTRIBUTING.md
npm test
Markus Oberlehner
Website: https://markus.oberlehner.net
Twitter: https://twitter.com/MaOberlehner
PayPal.me: https://paypal.me/maoberlehner
Patreon: https://www.patreon.com/maoberlehner
MIT
FAQs
Extract certain CSS selectors form CSS code
The npm package css-selector-extract receives a total of 0 weekly downloads. As such, css-selector-extract popularity was classified as not popular.
We found that css-selector-extract 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
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.