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.
@highpoint/java-sass-compiler
Advanced tools
Node wrapper around Vaadin's Java sass-compiler
npm install hp-mobile/node-java-sass-compiler
const javaSassCompiler = require('java-sass-compiler');
javaSassCompiler({
in: 'file.scss',
out: 'file.css',
minify: true
}, (err, stdout, stderr) => {
if (err) {
console.error(`Compile error: ${err}`);
}
console.log(`stdout ${stdout}`);
console.log(`stderr ${stderr}`);
});
Option | Values | Default | Explanation |
---|---|---|---|
compress | true, false | false | Create also a compressed version of the compiled CSS (only when output file is given) |
ignoreWarnings | true, false | false | Let compilation succeed even though there are warnings |
in | File path | None | The .scss file to compile (required) |
minify | true, false | false | Minify the compiled CSS with YUI Compressor |
out | File path | None | The .css file where the generated CSS is stored. If it is not defined, the compiled CSS will be written to standard output. |
urlMode | mixed, absolute, relative | mixed | Set URL handling mode |
FAQs
Node wrapper around Vaadin's Java sass-compiler
The npm package @highpoint/java-sass-compiler receives a total of 1 weekly downloads. As such, @highpoint/java-sass-compiler popularity was classified as not popular.
We found that @highpoint/java-sass-compiler 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.