html-converter-full
Are you tired of thinking for ways how to safely convert your string to a html or using dangerouslysetinnerhtml and worrying about any xss attacks when doing so? Well worry not, html-converter-full provides easy way to convert your string into a safely sanitized html. It's built on top of dompurify and it's made to work with react and vanilla js.
What and why is sanitization important?
Data Sanitization or in this case XSS Sanitization is crucial to prevent a XSS Attack. Sanitization must be done before rendering any third-party content into the UI. So what html-converter does is it removes any dangeroues tags like <script /> or alert
(of course if you intend to have some dangerous tags in your code, you can completely disable sanitization or filter out those tags)
Two main functions for converting:
- html-converter-react - Isomorphic React converter (works on SSR and CSR) for translating your string into a html. Returns JSX.Element | JSX.Element[] | string with sanitized data(all dangerous tags removes)
- html-converter-js - Vanilla Js converter (works only on CSR) for translating your string into a html. Read bellow to see how it works
html-converter-full
It has both html-converter-react and html-converter-js
Installation
npm install html-converter-full
yarn add html-converter-full
Usage
import { htmlConverterReact, htmlConverter } from 'html-converter-full';
htmlConverter (html-converter-js) - comes with bundled javascript file that can be used with the script tag
<script src="node_modules/html-converter-js/dist/bundle.js"></script>
html-converter-react
Works both on server side and client side (CSR/SSR). You can use Next.js/Gatsby.js/CRA
Seperate Installation
npm install html-converter-react
yarn add html-converter-react
Usage
import { htmlConverterReact } from 'html-converter-react';
const text = '<p>Paragraph</p>';
const textEls = '<p>Paragraph</p><p>Second paragraph</p>';
const dangerousText = '<p>Paragraph<script></script></p>';
const App = () => {
return (
<div>
<h1>My App</h1>
{htmlConverterReact(text)}
{htmlConverterReact(textEls)}
{htmlConverterReact(dangerousText)}
</div>
);
};
Explanation:
- htmlConverterReact(text) - returns JSX.Element paragraph
- htmlConverterReact(textEls) - returns JSX.Element paragraph with sanitized data:
<p>Paragraph</p>
(without script tag) - htmlConverterReact(dangerousText) - returns JSX.Element[] array of jsx elements, two paragraphs
Options
html-converter-js
Works only on client-side
Seperate Installation
npm install html-converter-js
yarn add html-converter-js
Usage
Javascript code:
import { htmlConverter } from 'html-converter-js';
const { htmlConverter } = require('html-converter-js');
const element = document.querySelector('#test-p');
const text = '<p>Paragraph</p>';
const textEls = '<p>Paragraph</p><p>Second paragraph</p>';
const dangerousText = '<p>Paragraph<script></script></p>';
const [newlyCreatedEl, cleanedData] = htmlConverter(text, 'p');
element.appendChild(newlyCreatedEl);
element?.insertAdjacentElement('beforeend', newlyCreatedEl);
element?.insertAdjacentHTML('beforeend', cleanData);
const [_, cleanedData] = htmlConverter(text, element);
console.log(`Sanitzed text: ${cleanedData} has been added to element ${element}`);
For html:
<html>
<head>
<title>My Notes</title>
<link href="style.css" rel="stylesheet" />
</head>
<body>
<h1>My App</h1>
<p id="test-p"></p>
</body>
</html>
Usage with script tag
Bundled version of the package must be used:
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>App</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script src="node_modules/html-converter-js/dist/bundle.js"></script>
</head>
<body>
<h1>My app</h1>
<p id="p-test"></p>
<script>
const { htmlConverter } = require('html-converter-js');
const element = document.getElementById('p-test');
const text = '<p>Paragraph</p>';
const textEls = '<p>Paragraph</p><p>Second paragraph</p>';
const dangerousText = `<p>Paragraph<script><\/script></p>`;
const [newlyCreatedEl, cleanData] = htmlConverter(text, 'b');
console.log(cleanData);
element.appendChild(newlyCreatedEl);
element?.insertAdjacentElement('beforeend', newlyCreatedEl);
element?.insertAdjacentHTML('beforeend', cleanData);
const [_, cleanedData] = htmlConverter(textEls, element);
console.log(`Sanitzed text: ${cleanedData} has been added to element ${element}`);
</script>
</body>
</html>
Options
Option | Description | Default |
---|
str | The string to be sanitized and parsed into a html | |
element | type: HTMLElement | keyof HTMLElementTagNameMap. Description: If you provide html tag (b, p, div ...) it will create new element with that tag and return the newly created element with the sanitized version of the string inside of it. However, if you provide HTMLElement it will just append the sanitzed string to that element. Return: [HTMLElement, string], the first element of the array is the newly created element or the element that was updated and the second element of the array is the sanitzed data/string | |
dompurifyConfig | Dompurify options | undefined |