
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.
convert-react-to-web-component
Advanced tools
This library is meant to make maintaining legacy code less painful. Micro frontend will reduce your legacy core complexity enabling you to integrate React (application/widgets) in it.
Warning This library is not tested with react 18.
npm install convert-react-to-web-component
or
yarn add convert-react-to-web-component
and don't forget to install peer dependencies:
import React from 'react';
import reactToWebComponent from 'convert-react-to-web-component';
const ReactApp = () => <div>Hello, world</div>;
reactToWebComponent(ReactApp);
this snippet will create <react-app> tag that can be used in plain html, angular template or twig.
To pass tag attributes to React component you have to specify them.
import React from 'react';
import reactToWebComponent from 'convert-react-to-web-component';
const ReactApp = ({ name, userLastName }) => (
<div>Hello, {name} {userLastName}</div>
);
reactToWebComponent(ReactApp, { attributes: ['name', 'userLastName'] });
Attributes should be passed as kebab-case to your element.
<div>
<react-app name="john" user-last-name="Cena">
</div>
React component will rerender on attribute change.
By default created tag name will be given React component name converted to kebab-case. You can change name of tab by specifying your desired name.
import React from 'react';
import reactToWebComponent from 'convert-react-to-web-component';
const ReactApp = ({ name }) => <div>Hello, {name}</div>;
reactToWebComponent(ReactApp, { attributes: ['name']; name: 'app' });
now you can call you component with <app> tag.
In some cases, you may want to use middleware to modify value before it is passed to React component. This can be useful when implementing functionality in twig or angular apps.
import React from 'react';
import reactToWebComponent from 'convert-react-to-web-component';
const ReactApp = ({ name }) => <div>Hello, {name}</div>;
const middleware = (value) => (
value.includes('{') ? undefined : value
);
reactToWebComponent(ReactApp, { attributes: ['name'], middleware });
To prevent style interference between parent application and your react app you can pass shadowDom property which will create shadow root and mount react app to it.
import React from 'react';
import reactToWebComponent from 'convert-react-to-web-component';
const ReactApp = () => <div>Hello, World</div>;
reactToWebComponent(ReactApp, { shadowDom: "open" });
If you came this far and read all that stuff above you may be planning to use this lib. If this is the case you may want to see a demo. But let's be honest I know you are pro, and you will definitely check out package.json to see what is available.
FAQs
Convert React to WebComponent
The npm package convert-react-to-web-component receives a total of 41 weekly downloads. As such, convert-react-to-web-component popularity was classified as not popular.
We found that convert-react-to-web-component demonstrated a not healthy version release cadence and project activity because the last version was released 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.