
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
ui-avatars-api
Advanced tools
npm install ui-avatars
import { UiAvatars } from "ui-avatars";
import fs from "fs";
const avatarOptions = {
name: "Jane Doe",
size: 128,
background: "ff5733",
color: "ffffff",
rounded: true,
};
const avatarGenerator = new UiAvatars(avatarOptions);
avatarGenerator
.downloadAvatar()
.then(({ url, image }) => {
fs.writeFileSync("avatar.png", image);
console.log("Avatar downloaded from:", url);
})
.catch((error) => {
console.error("Error downloading avatar:", error.message);
});
constructor(options?: UiAvatarsSettingsType)
options: An optional object to configure default avatar settings. See UiAvatarsSettingsType for available options.
Methods
createUrl(options?: UiAvatarsSettingsType): string
Generates a URL for the avatar image with the specified settings.
options: An optional object to override the default settings.
Returns: A string URL to request the avatar image.
downloadAvatar(options?: UiAvatarsSettingsType): Promise<{ url: string; image: Buffer }>
Downloads the avatar image and returns the URL and image buffer.
options: An optional object to override the default settings.
Returns: A promise that resolves to an object containing:
url: The URL used to request the avatar image.
image: The image data as a Buffer.
downloadAvatarByUrl(url: string): Promise<{ url: string; image: Buffer }>
Downloads the avatar image and returns the URL and image buffer.
url: string;
Returns: A promise that resolves to an object containing:
url: The URL used to request the avatar image.
image: The image data as a Buffer.
FAQs
ui-avatars api
We found that ui-avatars-api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.