
Research
/Security News
Malicious npm Packages Target WhatsApp Developers with Remote Kill Switch
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.
ethereum-gradient-base64
Advanced tools
A tiny library for generating base64 encoded PNG gradient identicons.
A tiny library for generating gradient identicons as base64 encoded SVGs.
See a live demo of it in action
# NPM
npm install --save ethereum-gradient-base64
# Yarn
yarn add ethereum-gradient-base64
import {makeGradient} from 'ethereum-gradient-base64';
// you can use makeGradientStatic for a gradient that does not move. Is not animated.
const img = new Image() ;
img.src = makeGradient('0x7cB57B5A97eAbe94205C07890BE4c1aD31E486A8');
document.body.appendChild(img);
import React from 'react';
import {makeGradient} from 'ethereum-gradient-base64';
// you can use makeGradientStatic for a gradient that does not move. Is not animated.
class Gradient extends React.Component {
render() {
return <img src={makeGradient(this.props.address)}/>
}
}
Note: In a real setting, we recommend saving to state and re-making the gradient on prop change for better re-render performance.
FAQs
A tiny library for generating base64 encoded PNG gradient identicons.
The npm package ethereum-gradient-base64 receives a total of 928 weekly downloads. As such, ethereum-gradient-base64 popularity was classified as not popular.
We found that ethereum-gradient-base64 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
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.
Research
/Security News
Socket uncovered 11 malicious Go packages using obfuscated loaders to fetch and execute second-stage payloads via C2 domains.
Security News
TC39 advances 11 JavaScript proposals, with two moving to Stage 4, bringing better math, binary APIs, and more features one step closer to the ECMAScript spec.