Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
@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 67,189 weekly downloads. As such, @lwc/engine-dom popularity was classified as 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 0 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.