![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
@lwc/engine-dom
Advanced tools
This package can be used to render LWC components as DOM elements in a DOM environment.
This package supports the following APIs.
This function creates an LWC component, given a tag name and an LWC constructor.
import { createElement } from 'lwc';
import LightningHello from 'lightning/hello';
const element = createElement('lightning-hello', { is: LightningHello });
document.body.appendChild(element);
Experimental APIs are subject to change, may be removed at any time, and should be used at your own risk!
This experimental API provides access to the component constructor, given an HTMLElement
.
This experimental API enables the detection of whether a node was rendered from an LWC template.
This function can build a Web Component class that can be registered as a new element via
customElements.define()
, given an LWC constructor.
Deprecated in favor of using the CustomElementConstructor
property of an LWC constructor.
import { LightningElement } from 'lwc';
class LightningHello extends LightningElement {}
// Don't do this.
customElements.define('lightning-hello', buildCustomElementConstructor(LightningHello));
// Do this instead.
customElements.define('lightning-hello', LightningHello.CustomElementConstructor);
FAQs
Renders LWC components in a DOM environment.
The npm package @lwc/engine-dom receives a total of 0 weekly downloads. As such, @lwc/engine-dom popularity was classified as not popular.
We found that @lwc/engine-dom demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 15 open source maintainers 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
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.