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.
cssvar-interaction
Advanced tools
A tiny JS powered utility to set/update CSS variables using eventListeners
A tiny JS powered NPM package to set/update CSS variables using eventListeners.
Install using (Node Package Manager):
npm install cssvar-interaction --save
For examples on CSS variables see the (MDN web docs)
Write some CSS using CSS variable --x
and multiply it by 1 unit of measurement using calc()
.
calc( var(--x) * 1px )
Apply it to a transform
statement with any option:
transform: translateX(calc(var(--x) * 1px));
use it on any CSS selector:
div {
transition: all linear 1s;
transform: translateX(calc(var(--x) * 1px));
}
Include the Eventlisteners into your document:
<script src="node_modules/cssvar-interation/dist/index.js" />
Run npm run test --prefix node_modules/cssvar-interaction
in the root of your project to open an HTML demo page with some examples.
FAQs
A tiny JS powered utility to set/update CSS variables using eventListeners
The npm package cssvar-interaction receives a total of 2 weekly downloads. As such, cssvar-interaction popularity was classified as not popular.
We found that cssvar-interaction 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.