
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
react-native-html-engine
Advanced tools
The hackable, full-featured Open Source HTML rendering solution for React Native.
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.
npm install react-native-html-engine
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}
/>
);
}
For documentation and examples, please refer to the original repository: https://github.com/meliorence/react-native-render-html
BSD 2-Clause "Simplified" License.
Made with create-react-native-library
FAQs
The hackable, full-featured Open Source HTML rendering solution for React Native.
We found that react-native-html-engine demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.