
Research
PyPI Package Disguised as Instagram Growth Tool Harvests User Credentials
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
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 2 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.
Research
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Security News
Research
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.