
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
web-component-decorator
Advanced tools
Lightweight TypeScript decorators for web components for easier handling of attribute changes and cleaner code
Replaces the web component functions customElements.define(…)
, observedAttributes()
and attributeChangedCallback(…)
with decorators @define(…)
and @attribute(…)
.
Advantages over other solutions:
npm install --save-dev web-component-decorator
import { attribute, CustomElement, define } from "web-component-decorator";
@define("my-button")
class MyButton extends HTMLElement implements CustomElement {
constructor() {
super();
this.attachShadow({ mode: "open" });
this.shadowRoot.innerHTML = `
<style>
button {
padding: 5px;
}
#icon {
vertical-align: middle;
}
</style>
<button id="button">
<img id="icon" alt="" width="16" height="16">
<slot></slot>
</button>
`;
}
@attribute("icon")
setIcon(icon: string, oldIcon: string) {
this.shadowRoot
.getElementById("icon")
.setAttribute("src", `icons/${icon}-24px.svg`);
}
}
This example can be found in the demo
directory in the repository.
@define(tagname [, options])
Name | Type | Description |
---|---|---|
tagname | string | Name of the tag to use. Should include a '-' (minus) |
options | object (optional) | Object with the form { extends: string } , where extends is the name of the HTML tag to extend |
Replacement for customElements.define(tagname, classname, options)
.
To be put right above the class declaration of the web component.
@attribute(attributename)
Name | Type | Description |
---|---|---|
attributename | string | Name of the attribute |
Replacement for observedAttributes()
and attributeChangedCallback(…)
.
The decorated function has the following signature:
anyName(newValue: string, oldValue:string): void
- Function to be called when an attributte changes, with the new and old value of the attribute.
A setter can also be decorated:
set anyName(value: string): void
- Function to be called when an attributte changes, with the new value of the attribute.
CustomElement
Interface to implement to get access to the web component type definitions.
Note In
tsconfig.json
, don't forget to add"experimentalDecorators": true
tocompilerOptions
.
Copyright 2023 Edwin Martin and released under the MIT license.
FAQs
Lightweight decorators for web components
The npm package web-component-decorator receives a total of 4 weekly downloads. As such, web-component-decorator popularity was classified as not popular.
We found that web-component-decorator 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
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.