
Product
Introducing Webhook Events for Alert Changes
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.
Lean and configurable whitelist-oriented HTML sanitizer
Works well in browsers, as its footprint size is very small (around ~2kb gzipped). API inspired by sanitize-html (which is around 100kb gzipped).
You would be insane not to use this!
npm install insane --save
insane('<div>foo<span>bar</span></div>', { allowedTags: ['div'] })
// <- '<div>foo</div>'
Contrary to similar sanitizers, insane drops the whole tree of descendants for elements that aren't allowed tags.
insane(html, options?, strict?)html can be an arbitrary HTML stringoptions are detailed belowstrict means that options won't be based off of insane.defaults if set to trueThe parser takes into account that some elements can be self-closing. For safety reasons the sanitizer will only accept a valid URL for background, base, cite, href, longdesc, src, and usemap elements. "Valid URL" means that it begins with either #, /, or any of options.allowedSchemes (followed by :).
optionsSensible defaults are provided. You can override specific options as needed.
allowedSchemesDefaults to ['http', 'https', 'mailto'].
allowedTagsAn array of tags that you'll allow in the resulting HTML.
Only allow spans, discarding the rest of elements.
insane('<div>foo</div><span>bar</span>', {
allowedTags: ['span']
});
// <- '<span>bar</span>'
allowedAttributesAn object describing the attributes you'll allow for each individual tag name.
Only allow spans, and only allow those spans to have an
id(discarding the rest of their attributes).
insane('<span id="bar" class="super">bar</span>', {
allowedTags: ['span'],
allowedAttributes: { span: ['id'] }
});
// <- '<span id="bar">bar</span>'
allowedClassesIf 'class' is listed as an allowed attribute, every single class will be allowed. If you don't list 'class' as an allowed attribute, you can provide a class whitelist per tag name.
Only allow spans to have
superorbadclass names, discarding the rest of them.
insane('<span class="super mean and bad">bar</span>', {
allowedTags: ['span'],
allowedClasses: { span: ['super', 'bad'] }
});
// <- '<span class="super bad">bar</span>'
filterTakes a function(token) that allows you to do additional validation beyond exact tag name and attribute matching. The token object passed to your filter contains the following properties.
tag is the lowercase tag name of the elementattrs is an object containing every attribute in the element, including those that may not be in the whitelistIf you return a falsy value the element and all of its descendants will not be included in the output. Note that you are allowed to change the attrs, and even add new ones, transforming the output.
Require that
<span>elements have anaria-labelvalue.
function filter (token) {
return token.tag !== 'span' || token.attrs['aria-label'];
}
insane('<span aria-label="a foo">foo</span><span>bar</span>', {
allowedTags: ['span'],
allowedAttributes: { span: ['aria-label'] },
filter: filter
});
// <- '<span aria-label="a foo">foo</span>'
transformTextTakes a function(text) that allows you to modify text content in HTML elements. Runs for every piece of text content. The returned value is used instead of the original text contents.
The default configuration is used if you don't provide any. This object is available at insane.defaults. You are free to manipulate the defaults themselves.
{
"allowedAttributes": {
"a": ["href", "name", "target"],
"iframe": ["allowfullscreen", "frameborder", "src"],
"img": ["src"]
},
"allowedClasses": {},
"allowedSchemes": ["http", "https", "mailto"],
"allowedTags": [
"a", "article", "b", "blockquote", "br", "caption", "code", "del", "details", "div", "em",
"h1", "h2", "h3", "h4", "h5", "h6", "hr", "i", "img", "ins", "kbd", "li", "main", "ol",
"p", "pre", "section", "span", "strike", "strong", "sub", "summary", "sup", "table",
"tbody", "td", "th", "thead", "tr", "u", "ul"
],
"filter": null,
"transformText": null
}
MIT
FAQs
Lean and configurable whitelist-oriented HTML sanitizer
We found that insane-zhc 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.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.