
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
fluxhtmlEasily parse, transform, and serialize HTML-like markup languages.
htmlparser2, a "fast and loose" parser that supports
parsing many HTML-like markup languages, including HTML, Astro, Vue, and
Svelte.html template utility: trivially create render functions from HTML
syntaxquerySelector and querySelectorAll support using fluxhtml/selector(npm|yarn|pnpm) i fluxhtml
walkThe walk function provides full control over the AST. It can be used to scan
for text, elements, components, or any other validation you might want to do.
Note >
walkisasyncand must beawaited. UsewalkSyncif the provided callback is synchronous.
import { ELEMENT_NODE, parse, walk } from "fluxhtml";
const ast = parse(`<h1>Hello world!</h1>`);
await walk(ast, async (node) => {
if (node.type === ELEMENT_NODE && node.name === "script") {
throw new Error("Found a script!");
}
});
walkSyncThe walkSync function is identical to the walk function, but is synchronous.
import { ELEMENT_NODE, parse, walkSync } from "fluxhtml";
const ast = parse(`<h1>Hello world!</h1>`);
walkSync(ast, (node) => {
if (node.type === ELEMENT_NODE && node.name === "script") {
throw new Error("Found a script!");
}
});
renderThe render function allows you to serialize an AST back into a string.
Note By default,
renderwill sanitize your markup, removing anyscripttags. Pass{ sanitize: false }to disable this behavior.
import { parse, render } from "fluxhtml";
const ast = parse(`<h1>Hello world!</h1>`);
const output = await render(ast);
transformThe transform function provides a straight-forward way to modify any markup.
Sanitize content, swap in-place elements/Components, and more using a set of
built-in transformers, or write your own custom transformer.
import { html, transform } from "fluxhtml";
import swap from "fluxhtml/transformers/swap";
import sanitize from "fluxhtml/transformers/sanitize";
const output = await transform(`<h1>Hello world!</h1>`, [
swap({
h1: "h2",
h3: (props, children) => html`<h2 class="ultra">${children}</h2>`,
}),
sanitize({ allowElements: ["h1", "h2", "h3"] }),
]);
console.log(output); // <h2>Hello world!</h2>
fluxhtml/transformers/sanitize implements an extension of the
HTML Sanitizer API.
| Option | Type | Default | Description |
|---|---|---|---|
| allowElements | string[] | undefined | An array of strings indicating elements that the sanitizer should not remove. All elements not in the array will be dropped. |
| blockElements | string[] | undefined | An array of strings indicating elements that the sanitizer should remove, but keep their child elements. |
| dropElements | string[] | ["script"] | An array of strings indicating elements (including nested elements) that the sanitizer should remove. |
| allowAttributes | Record<string, string[]> | undefined | An object where each key is the attribute name and the value is an Array of allowed tag names. Matching attributes will not be removed. All attributes that are not in the array will be dropped. |
| dropAttributes | Record<string, string[]> | undefined | An object where each key is the attribute name and the value is an Array of dropped tag names. Matching attributes will be removed. |
| allowComponents | boolean | false | A boolean value set to false (default) to remove components and their children. If set to true, components will be subject to built-in and custom configuration checks (and will be retained or dropped based on those checks). |
| allowCustomElements | boolean | false | A boolean value set to false (default) to remove custom elements and their children. If set to true, custom elements will be subject to built-in and custom configuration checks (and will be retained or dropped based on those checks). |
| allowComments | boolean | false | A boolean value set to false (default) to remove HTML comments. Set to true in order to keep comments. |
This library is based on and heavily inspired by
Nate Moore's excellent
ultrahtml library. While fluxhtml
uses a different parser and has some additional functionality, the API is
largely identical to that of ultrahtml.
FAQs
Easily parse, transform, and serialize HTML-like markup languages.
The npm package fluxhtml receives a total of 81 weekly downloads. As such, fluxhtml popularity was classified as not popular.
We found that fluxhtml demonstrated a healthy version release cadence and project activity because the last version was released less than 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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.