
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
Utility to compile sass using libsass, and watch for changes - only recompiling files that need to be.
Compiles SCSS/SASS to CSS using libsass. The main difference between it and others is that there is a watch option that will only re-compile files that need to be, rather than re-compiling everything after every change.
Configuration can either be added directly into your package.json, or you can create a sasster.config.js file in order to use custom includePaths (i.e. Bourbon, Neat).
With npm do:
npm install -D sasster
Usage: sasster <source> <dest> --cwd [str] --imagePath [str] --outputStyle [str] --sourceMap [bool] -c [str] -w [bool]
Options:
--cwd Path to the Current Working Directory, useful when using
globs in the <source> option
--imagePath Path to your image directory
--outputStyle Change the generated CSS output, default is nested
--sourceMap Boolean, whether or not to generate source maps
--config, -c Path to a custom configuration file.
--watch, -w A bundle name to watch. You can repeat
this option for each bundle you want to
watch.
using standalone
$ sasster **/*.scss dist/css --cwd=src/scss --imagePath=img --sourceMap=true --outputStyle=compressed -w
...
"sasster": {
"cwd": "src/scss"
"src": "**/*.scss",
"dest": "dist/css"
"imagePath": "img",
"outputStyle": "nested",
"sourceMap": true,
"chokidar": {
"usePolling": true
}
}
...
"scripts": {
"clean": "rimraf dist/css/*",
"watch:styles": "sasster -w",
"build:styles": "npm run clean && sasster --sourceMap=false --outputStyle=compressed",
"dev": "npm run watch:styles",
"prod": "npm run build:styles"
}
using the above package.json
$ npm run dev
(in your project's root)
var neat = require('node-neat');
module.exports = {
cwd: 'src/scss'
src: '**/*.scss',
dest: 'dist/css'
imagePath: 'img',
outputStyle: 'nested',
sourceMap: true,
includePaths: neat.includePaths,
chokidar: {
usePolling: true
}
}
FAQs
Utility to compile sass using libsass, and watch for changes - only recompiling files that need to be.
We found that sasster 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.