New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

react-native-html-engine

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-html-engine

The hackable, full-featured Open Source HTML rendering solution for React Native.

latest
Source
npmnpm
Version
8.0.4
Version published
Maintainers
1
Created
Source

react-native-html-engine

The hackable, full-featured Open Source HTML rendering solution for React Native.

This is a fork of react-native-render-html that is maintained by Juan D. Jara. I did change a lot of things, but the main goal is to keep the same API and features as the original repository. Maintaning the documentation sites and examples is not a priority of this fork, so please refer to the original repository for the most up-to-date information.

Installation

npm install react-native-html-engine

Usage

import React from 'react';
import { useWindowDimensions } from 'react-native';
import RenderHtml from 'react-native-render-html';

const source = {
  html: `
<p style='text-align:center;'>
  Hello World!
</p>`
};

export default function App() {
  const { width } = useWindowDimensions();
  return (
    <RenderHtml
      contentWidth={width}
      source={source}
    />
  );
}

Documentation

For documentation and examples, please refer to the original repository: https://github.com/meliorence/react-native-render-html

Contributing

License

BSD 2-Clause "Simplified" License.

Made with create-react-native-library

Keywords

react-native

FAQs

Package last updated on 22 Sep 2025

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