
Security News
Risky Biz Podcast: Making Reachability Analysis Work in Real-World Codebases
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
@catherine22/kwc-engine-core
Advanced tools
This package contains the core logic shared by different runtime environments. Examples of this include the rendering engine and the reactivity mechanism. Since this package only provides internal APIs for building custom runtimes, it should never be consumed directly in an application.
Usage of internal APIs are prevented by the compiler and are therefore not documented here.
This package supports the following APIs.
This decorator is used to mark the public fields and the public methods of an KWC component.
import { LightningElement, api } from 'kwc';
class LightningHello extends LightningElement {
@api
hello = 'default hello';
}
This decorator should be used on private fields to track object mutations.
import { LightningElement, api, track } from 'kwc';
class LightningHello extends LightningElement {
@api
get name() {
return name.raw;
}
set name(value) {
name.normalized = normalize(value);
}
@track
name = {
raw: 'Web components ',
normalized: 'Web Components',
};
}
This decorator should be used to wire fields and methods to a wire adapter.
import { LightningElement, wire } from 'kwc';
import { getRecord } from 'recordDataService';
export default class Test extends LightningElement {
@wire(getRecord, { id: 1 })
recordData;
}
This function creates a context provider, given a wire adapter constructor.
This class should be extended to create an KWC constructor.
import { LightningElement } from 'kwc';
class LightningHello extends LightningElement {
// component implementation
}
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 internal component metadata.
This experimental API enables the identification of KWC constructors.
This experimental API enables the creation of a reactive readonly membrane around any object value.
This experimental API allows setting overridable hooks with an application specific implementation.
List of overridable hooks:
sanitizeHtmlContent
, see sanitizeHtmlContent.This experimental API enables the sanitization of HTML attribute values by external services.
This experimental API enables the sanitization of HTML content by external services. The kwc:inner-html
binding relies on this hook. This hook must be overridden (see setHooks ) as the default implementation is to throw an error.
This experimental API enables the removal of an object's observable membrane proxy wrapper.
This experimental API enables the addition of a signal as a trusted signal. If the ENABLE_EXPERIMENTAL_SIGNALS feature is enabled, any signal value change will trigger a re-render.
If setTrustedSignalSet
is called more than once, it will throw an error. If it is never called, then no trusted signal validation will be performed. The same setTrustedSignalSet
API must be called on both @catherine22/kwc-engine-dom
and @catherine22/kwc-signals
.
Not intended for external use. This experimental API enables the caller to determine if an object is a trusted signal. The ENABLE_EXPERIMENTAL_SIGNALS feature must be enabled.
Not intended for external use. Enables another library to establish contextful relationships via the KWC component tree. The connectContext
and disconnectContext
symbols that are provided are later used to identify methods that facilitate the establishment and dissolution of these contextful relationships. The ENABLE_EXPERIMENTAL_SIGNALS feature must be enabled.
Not intended for external use. This experimental API enables the addition of context as trusted context. The ENABLE_EXPERIMENTAL_SIGNALS feature must be enabled.
If setTrustedContextSet
is called more than once, it will throw an error. If it is never called, then context will not be connected.
The context object's connectContext
and disconnectContext
methods are called with this object when contextful components are connected and disconnected. The ContextBinding exposes provideContext
and consumeContext
,
enabling the provision/consumption of a contextful Signal of a specified variety for the associated component. The ENABLE_EXPERIMENTAL_SIGNALS feature must be enabled.
Not intended for external use. Signals that extend SignalBaseClass will be added to set of trusted signals. The ENABLE_EXPERIMENTAL_SIGNALS feature must be enabled.
FAQs
Core KWC engine APIs.
The npm package @catherine22/kwc-engine-core receives a total of 53 weekly downloads. As such, @catherine22/kwc-engine-core popularity was classified as not popular.
We found that @catherine22/kwc-engine-core 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
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.