Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
alit-element
Advanced tools
A simple base class that extends lit-element with some utility functions.
It also defines decorators, similar to polymer-decorators, which makes development of web components in typescript super easy.
Here's some sample code that showcases decorators. (full code)
@element('alit-card')
export class AlitCard extends AlitElement {
@property() name?: string;
@property() age: number = 30;
@property() image?: string;
@property() description: string = 'This is the default description';
@query('.card')
card?: HTMLDivElement;
@listen('click', '#toggleButton')
toggleBorder() {
this.borderShowing = !this.borderShowing;
this.card!.style.border = this.borderShowing ? '2px solid' : 'none';
}
@observe('age', 'description')
ageChanged(records: ChangeRecord[]) {
for (const r of records) {
console.log(`${r.path} changed from '${r.oldValue}' to '${r.value}'`);
}
}
_render(): TemplateResult {
return html`
...
...
<div class="card">
...
</div>
...
`;
}
Get element with specified ID in the element's shadow root.
const button = this.$('toggleButton');
Find first element macthing the slector in the element's shadow root.
const card = this.$$('.card');
Find all elements matching the selector in the element's shadow root.
const allCards = this.$$All('.card');
Utility method to fire custom events
this.fireEvent('selected');
this.fireEvent('selected', {selection: this.currentSelection});
Defines a custom element with the associated class
@element('hello-world')
export class HelloWorld extends AlitElement {
_render() {
return html`
<div>Hello World</div>
`;
}
}
Declared a property to be used by LitElement. The type is infered using reflected metadata.
@element('hello-world')
export class HelloWorld extends AlitElement {
@property() name?: string;
@property() job?: string;
@property() age: number = 30;
}
Replace this property with a getter that returns the element matching the specified selector.
@query('.card')
card?: HTMLDivElement;
Replace this property with a getter that returns the NodeList of all elements matching the specified selector.
@queryAll('my-widget')
widgets: NodeListOf<MyWidgetElement>;
Add an event listener for eventName
on target
.
target
can be an object reference, or the selector string to find the element in the shadow root.
@listen('click', '#toggleButton')
toggleBorder() {
this.borderShowing = !this.borderShowing;
}
@listen('click', document)
documentClick() {
console.log('document clicked');
}
Add observers to the specified set of properties. This does not support children of properties or wildcards.
@observe('age', 'description')
ageChanged(records: ChangeRecord[]) {
// do stuff when age or description changes
}
A ChangeRecord
is defined as follows:
interface ChangeRecord {
path: string; // property name
value: any;
oldValue: any;
}
FAQs
A simple wrapper for lit-element with some enhanced functions
The npm package alit-element receives a total of 5 weekly downloads. As such, alit-element popularity was classified as not popular.
We found that alit-element 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
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.