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.
broccoli-quick-plugin
Advanced tools
A convenient way to make a quick broccoli node wrapper with having to fully create a new plugin constructor/class that derives from broccoli-plugin.
broccoli-quick-plugin
is a prototype of an "anonymous" broccoli plugin helper, since you can no longer have have filters/plugins that are object literals. Also, it is convenient because the builder will error on any node without __broccoliGetInfo__
.
return QuickPlugin(inputNodes, {
build: function() {
/* your code here */
},
// Options that are passed to broccoli-plugin
name: "...",
annotation: "...",
// Other options
// By default, the plugin is a "passthrough" that symlinks its output to its
// inputNode's outputPath, making it "pass" along all files written in the inputNode.
// However, you can make it a "noop" which has nothing in its outputPath.
passthrough: "false" // defaults to true
});
Since you can no longer do this:
// How you used to be able to have a anonymous plugin pre broccoli v1.0.0-beta
return {
read: function(readTree) {
/* Your own quick little plugin code */
}
}
FAQs
A convenient way to make a quick broccoli node wrapper with having to fully create a new plugin constructor/class that derives from broccoli-plugin.
The npm package broccoli-quick-plugin receives a total of 0 weekly downloads. As such, broccoli-quick-plugin popularity was classified as not popular.
We found that broccoli-quick-plugin 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.