You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

html-purify

HTML5 Purifier

1.1.0
latest
69

Supply Chain Security

100

Vulnerability

96

Quality

80

Maintenance

100

License

Version published
Weekly downloads
94
-6.93%
Maintainers
2
Weekly downloads
 
Created

HTML5 Purify

HTML5 Purifier - a fast and small footprint HTML5 purifier. The module uses a whitelist based approach to filter malicious characters,tags, attributes and attribute values while keeping the resulting output HTML5 compliant. It uses context parser for parsing the input string, xss filters for filtering URI attribute values and css-js for filtering CSS data within the HTML input.

npm version dependency status Build Status

Quick Start

Install html-purify from the npm repo

npm install html-purify

Server side use(nodejs)

/* create the html purifier */
var Purifier = require('html-purify');
var purifier = new Purifier();

var input = '...'; 
/* filter the input string */
var result = purifier.purify(input);

Development

How to build

npm install
npm run-script build

How to test

npm test

License

This software is free to use under the Yahoo Inc. BSD license. See the LICENSE file for license text and copyright information.

Keywords

FAQs

Package last updated on 18 Feb 2016

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