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.
A light-weight, vanilla JavaScript library to help you create fancy backgrounds
Little vanilla JS library to add interactive backgrounds to your webpages - View Demo
Install it using yarn or npm
yarn add brusher
Or you may use unpkg
http://unpkg.com/brusher/dist/brusher.min.js
For the basic usage, all you need to do is create an instance of Brusher
and provide an image
import Brusher from 'brusher';
const brusher = new Brusher({
image: 'abstract.png'
});
brusher.init();
Here is the list of options that you may use
const brusher = new Brusher({
image: 'abstract.png', // Path of the image to be used as a brush
keepCleared: true, // Put the blur back after user has cleared it
stroke: 80, // Stroke size for the brush
lineStyle: 'round', // Brush style (round, square, butt)
autoBlur: false, // Brusher will use the provided image for the blurry background
autoBlurValue: 15, // Blur strength in pixels
});
brusher.init();
A note on blurry background: although brusher is capable of generating blurry background by itself. It is recommended that you blur the image yourself and apply it to the body for improved performance. Brusher relies on CSS blur if you don't provide the blurry image. And rendering performance for the pre-provided blurred image would be of-cource much less than that applied using CSS. Here is the sample CSS that you may use for the background
body {
background-size: cover;
background-position: 0 0;
background-attachment: fixed;
background-image: url(path/to/blurred/image.jpg);
}
MIT © Kamran Ahmed
FAQs
A light-weight, vanilla JavaScript library to help you create fancy backgrounds
We found that brusher 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
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.