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.
js-gravatar
Advanced tools
A vanilla JS library to get a user's gravatar and if it doesn't exist provides one different from gravatar default
Copy dist/js-gravatar.js into your library folder Load it into your HTML script
<script type="text/javascript" src="path/to/js-gravatar.js"></script>
You can use the UNPKG link https://unpkg.com/js-gravatar@1.1.2/dist/js-gravatar.js
. Remember to update the package number to the most recent.
Call the method with its options.
JsGravatar({ element, numberOfDice: 2, callback });
Install with npm.
npm install --save js-gravatar
Install with yarn.
yarn add js-gravatar
import the library
ES5
const JsGravatar = require('js-gravatar');
ES6
import JsGravatar from 'js-gravatar';
Call the method
JsGravatar({ email: 'user@email.com', size: 10, defaultImage: 'identicon' });
JsGravatar({ email: 'user@email.com', defaultImage: 'monsterid' });
email
: Email address of the user to generate gravatar for - stringmd5Hash
: Optional: MD5 hash of the email above. If email is provided, md5hash will be ignored. If neither email nor md5hash is provided, the library will throw en error - stringsize
: Optional: The size of the image to be displayed. Should be from 1 to 2048 - numberdefaultImage
: What image should be used if email does not have a gravatar. See options below - stringDefaultimage Options - ['404', 'mp', 'identicon', 'monsterid', 'wavatar', 'retro', 'robohash', 'blank']
MIT License
FAQs
A vanilla JS library to get a user's gravatar and if it doesn't exist provides one different from gravatar default
We found that js-gravatar 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.