Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
node-sass-watcher
Advanced tools
SCSS watcher with post-processing.
node-sass
has --watch
option but it doesn't allow post-processing of the compiled CSS.
The only way is to "watch" the generated CSS file with another watcher. It's not convenient.
node-sass-watcher
provides simple way to do SCSS watching with post-processing.
npm install node-sass-watcher
node-sass-watcher src/input.scss -o dist/output.css -c 'node-sass <input> | postcss -u autoprefixer --autoprefixer.browsers="ie >= 9, > 1%"'
Note: You need to run node-sass
inside the post-processing command,
because I don't want to deal with all node-sass
CLI arguments.
In fact, current implementation is node-sass
-independent.
More about --command
(-c
):
input.scss
are passed to the command's stdin
<input>
will be replaced with the input file path<output>
will be replaced with the output file path, provided with --output
(-o
) argument (if specified)|
), FD redirects (> output.css
), etcIf there's no -o
specified, the command output will be printed to stdout
.
All CLI options:
Usage: node-sass-watcher <input.scss> [options]
Options:
-c, --command Pass a command to execute. Shell syntax allowed
-o, --output Output CSS file path
-r, --root-dir Directory to watch for addition/deletion of the files. Default: .
-I, --include-path Path to look for imported files. Use multiple if needed
-e, --include-extensions File extensions to watch. Default: scss, sass, css
-v, --verbose Verbosity level: from -v to -vvv
-h, --help Show help
-V, --version Show version number
Example: node-sass
→ autoprefixer
.
// watch-it.js
var fs = require('fs');
var sass = require('node-sass');
var postcss = require('postcss');
var autoprefixer = require('autoprefixer');
var Watcher = require('node-sass-watcher');
// Input variables
var inputFile = process.argv[2];
var outputFile = process.argv[3];
var supportedBrowsers = process.argv[4];
// Renderer
function render() {
console.warn('Rendering "' + inputFile + '" file...');
sass.render({file: inputFile}, function(err, result) {
if (err) {
console.error('Error: ' + err.message);
return;
}
var processor = postcss([
autoprefixer({
browsers: supportedBrowsers.split(/,\s*/g)
})
]);
console.warn('Processing with Autoprefixer for browsers: ' + supportedBrowsers);
processor.process(result.css.toString()).then(
function(result) {
console.warn('Outputting to "' + outputFile + '" file...');
fs.writeFile(outputFile, result.css);
},
function(err) {
console.error('Error: ' + err.message);
}
);
});
}
// Start watching
var watcher = new Watcher(inputFile);
watcher.on('init', render);
watcher.on('update', render);
watcher.run();
Run your custom script:
node watch-it.js src/input.scss dist/output.css "ie >= 9, > 1%"
Feel free to create a ticket or a pull-request ;)
0.5.1 - 2017-01-16
README.md
updatedFAQs
SCSS watcher with post-processing.
The npm package node-sass-watcher receives a total of 70 weekly downloads. As such, node-sass-watcher popularity was classified as not popular.
We found that node-sass-watcher 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.