Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

bleach

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bleach

A minimalistic HTML sanitizer

  • 0.1.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
473
increased by1251.43%
Maintainers
1
Weekly downloads
 
Created
Source

bleach

Sanitize your HTML the easy way!

bleach

install

npm install bleach

example

Basic:


var bleach = require('bleach');

var html = bleach.sanitize(aBunchOfHTML);

console.log(html);

Advanced:


var bleach = require('bleach');

var whitelist = [
  'a',
  'b',
  'i',
  'em',
  'strong'
]

var options = {
  mode: 'white',
  list: whitelist
}

var html = bleach.sanitize(aBunchOfHTML);

console.log(html);

usage

bleach.sanitize(html, options)

Runs HTML through sanitizer and returns sanitized HTML as string.

options may contain the following optional attributes:

  • mode may be set to 'white' or 'black'
  • list is an array containing tags to match against

whitemode will remove all tags from html, excluding those in list

blackmode will remove all tags found in list that are found in html

bleach.analyze(html)

Will extract all tags from HTML and return an array of JSON objects. Example return:

[
  {
    full: '<div id="post-119477">',
    name: 'div',
    attr: [
      "id": "post-119477"
    ]
  },
  ...
]

FAQs

Package last updated on 22 Sep 2011

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc