Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@mat3e-ux/stars
Advanced tools
Display rating as stars (readonly)
★★★☆☆
<script type="module" src="https://unpkg.com/@mat3e-ux/stars"></script>
Install from npm:
npm i @mat3e-ux/stars
Simple one-time import:
import '@mat3e-ux/stars';
or "manual" registration:
import Stars from '@mat3e-ux/stars/component';
// same as previously
Stars.register();
// registering as a different tag:
Stars.register('just-stars');
<m3-stars max="5" current="4.62036"></m3-stars>
<m3-stars max="5" current="2.55" title="2.55"></m3-stars>
<m3-stars style="color: red" max="5" current="3.62036"></m3-stars>
You can override a default ★ and ☆ symbols, setting static properties before registering the component:
import Stars from "@mat3e-ux/stars/component";
Stars.empty = '💀';
Stars.full = '😄';
Stars.register();
Note: it will override symbols for all the <m3-stars>
tags.
Alternatively, you can reuse the component and create your own with overriden symbols like:
import '@mat3e-ux/stars'; // <m3-stars> works as before
import Stars from "@mat3e-ux/stars/component";
// <m3-emoji> works with the below symbols
Stars.empty = '💀';
Stars.full = '😄';
customElements.define('m3-emoji', class extends Stars {});
FAQs
Display rating as stars (readonly)
The npm package @mat3e-ux/stars receives a total of 47 weekly downloads. As such, @mat3e-ux/stars popularity was classified as not popular.
We found that @mat3e-ux/stars 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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.