Package Exports
- striptags
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (striptags) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
striptags 
A fast implementation of PHP's strip_tags in Node.js.
Changes from v1.0.0
- Completely rewritten to use a state machine to remove tags (similar to how PHP's strip_tags works)
- 100% test code coverage
- Output is no longer constructed from parsing input, so output is identical to input minus HTML tags
- Zero dependencies
Installing
npm install striptags
Usage
striptags(html, allowedTags);
Example
var striptags = require('striptags');
var html =
'<a href="https://example.com">' +
'lorem ipsum <strong>dolor</strong> <em>sit</em> amet' +
'</a>';
striptags(html);
striptags(html, '<a><strong>');
striptags(html, ['a']);
Outputs:
'lorem ipsum dolor sit amet'
'<a href="https://example.com">lorem ipsum <strong>dolor</strong> sit amet</a>'
'<a href="https://example.com">lorem ipsum dolor sit amet</a>'
Tests
You can run tests (powered by mocha) locally via:
npm test
Generate test coverage (powered by blanket.js) via :
npm run test-coverage
Differences between PHP strip_tags and striptags
In this version, not much! This now closely resembles a 'port' from PHP 5.5's internal implementation of strip_tags, php_strip_tags_ex.
One major difference is that this JS version does not strip PHP-style tags; it seemed out of place in a node.js project. Let me know if this is important enough to consider including.
Doesn't use regular expressions
striptags does not use any regular expressions for stripping HTML tags (these are used for detecting whitespace and parsing the allowedTags parameter, not finding HTML).
Regular expressions are not capable of preventing all possible scripting attacks (see this). Here is a great StackOverflow answer regarding how strip_tags (when used without specifying allowableTags) is not vulnerable to scripting attacks.