
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
@datorama/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 @datorama/postcss-node-sass receives a total of 0 weekly downloads. As such, @datorama/postcss-node-sass popularity was classified as not popular.
We found that @datorama/postcss-node-sass demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.