Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
postcss-node-sass
Advanced tools
A PostCSS plugin to parse styles with node-sass
npm install postcss-node-sass
After installation, you can process Sass via PostCSS like this
postcss([require('postcss-node-sass')]).process(yourCSS);
or using Gulp a typical gulpfile might look like:
let gulp = require('gulp'),
postcss = require('gulp-postcss'),
sass = require('postcss-node-sass');
gulp.task('css', () => {
gulp.src('path/to/dev/css')
.pipe(postcss([
/* postcss plugins before parsing sass */
sass()
/* postcss plugins after parsing sass */
]))
.pipe(gulp.dest('path/to/build/css'));
});
/* rest of gulp file */
The Node Sass options can be passed in to this plugin except for data
, file
, importer
, omitSourceMapUrl
, outFile
, sourceMap
, sourceMapContents
as these are handled by the plugin. Furthermore, by default the processor will use outputStyle:'expanded'
and indentWidth:4
.
FAQs
A PostCSS plugin to parse styles with node-sass
The npm package postcss-node-sass receives a total of 0 weekly downloads. As such, postcss-node-sass popularity was classified as not popular.
We found that postcss-node-sass demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.