1.0.2 • Published 2 years ago

react-purified v1.0.2

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

React Purified

Safely use dangerouslySetInnerHTML in React by effortless sanitizing the input string.

Table of contents

Installation

The tool is written in Node.js, but you can use it to run any commands.

npm

npm install react-purified

yarn

yarn add react-purified

pnpm

pnpm add react-purified

Usage

Components

PurifiedDiv

Your template will have a <div> container. Every prop a <div> tag can get is valid.

import { PurifiedDiv } from 'react-purified'

export const SomeComponent = props => {
  // your code

  return <Fragment>
    <PurifiedDiv dirty={ someDirtyString } />
  </Fragment>
}

PurifiedSpan

Your template will have a <span> container. Every prop a <span> tag can get is valid.

import { PurifiedSpan } from 'react-purified'

export const SomeComponent = props => {
  // your code

  return <Fragment>
    <PurifiedSpan dirty={ someDirtyString } />
  </Fragment>
}

Hook

usePurified

The components in a hook form.

:warning: * It is strongly encouraged to use the components. With the hook you run the risk of accidentally mutating the clean string (which might invalidate the sanitizing).

import { usePurified } from 'react-purified'

export const SomeComponent = props => {
  // your code
  const clean = usePurified(dirty)

  return <Fragment>
   <div dangerouslySetInnerHTML={{ __html: clean }} />
  </Fragment>
}