
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
broccoli-pages
Advanced tools
Allows you to generate HTML from Markdown and HTML fragments. You can specify metadata for each page. In metadata, you can specify a Handlebars template to be used to wrap this content.
---
title: Hello World
description: some text
template: default.hbs
---
**Beautiful World**
var MarkdownPages = require('broccoli-pages').MarkdownPages;
var HTMLPages = require('broccoli-pages').HTMLPages;
var HBSPages = require('broccoli-pages').HBSPages;
var pickFiles = require('broccoli-static-compiler');
var options = {
templates: './templates',
helpers: './helpers',
partials: './templates/partials',
globals: {
message: "Hello World!",
team: [ 'Bob', 'Joe', 'Mary' ]
}
};
var content = pickFiles('content', {
srcDir: '/',
files: ['**/*.*'],
destDir: '/'
});
var html;
html = HTMLPages(content, options);
html = MarkdownPages(html, options);
html = HBSPages(html, options);
module.exports = html;
You can see an example Brocfile.js and example directory.
FAQs
Build HTML pages from Markdown and HTML fragments
The npm package broccoli-pages receives a total of 1 weekly downloads. As such, broccoli-pages popularity was classified as not popular.
We found that broccoli-pages 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
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.