Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
broccoli-vulcanize-html-imports
Advanced tools
Broccoli plugin for vulcanizing HTML imports with Polymer Vulcanize tool
Broccoli plugin for vulcanizing HTML imports with Polymer vulcanize tool. It strips out HTML imports from files and then vulcanizes the import files. This is useful for preprocessing templates before compiling them.
npm install --save-dev broccoli-vulcanize-html-imports
var vulcanize = require('broccoli-vulcanize-html-imports');
var inputTree = 'templates';
var options = {
extensions: ['html', 'hbs'],
outputFile: 'assets/components.html',
overwrite: true,
csp: true,
inline: true,
strip: true,
excludes: {
imports: ["(^data:)|(^http[s]?:)|(^\/)"],
scripts: ["(^data:)|(^http[s]?:)|(^\/)"],
styles: ["(^data:)|(^http[s]?:)|(^\/)"]
}
};
module.exports = vulcanize(inputTree, options);
Input Tree
templates
+ - components
| + - component.hbs
+ - page.html
Output Tree
.
+ - assets
| + - components.html
| + - components.js
+ - components
| + - component.hbs
+ - page.html
The assets\components.html
and assets\components.js
are vulcanized import files and components\component.hbs
and page.html
are stripped out of HTML imports except the ones that are specified in excludes.imports
option.
See polymer vulcanize for details on options
.
FAQs
Broccoli plugin for vulcanizing HTML imports with Polymer Vulcanize tool
We found that broccoli-vulcanize-html-imports 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.