Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
@adeira/css-colors
Advanced tools
Utility functions for working with CSS/HTML colors.
yarn add @adeira/css-colors
import { cssColorNames } from '@adeira/css-colors';
cssColorNames.get('rebeccapurple'); // => #663399
The imported cssColorNames
is actually a Map
of all CSS keywords.
import { isColor } from '@adeira/css-colors';
isColor('#663399'); // true
isColor('rebeccapurple'); // true
isColor('rgb(255, 255, 128)'); // true
isColor('hsl(50, 33%, 25)'); // false (should be 25%)
import { normalizeColor } from '@adeira/css-colors';
normalizeColor('#639'); // #639
normalizeColor('#663399'); // #639
normalizeColor('rebeccapurple'); // #639
import { hex6ToHex3 } from '@adeira/css-colors';
hex6ToHex3('#663399'); // #639
FAQs
Utility functions for working with CSS/HTML colors.
The npm package @adeira/css-colors receives a total of 37 weekly downloads. As such, @adeira/css-colors popularity was classified as not popular.
We found that @adeira/css-colors demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.