あいつの日誌β

働きながら旅しています。

Node.js で Gravatar の画像を取得する

Gravatar は Email アドレスと自身にプロフィール画像を結びつけるサービスです。

const crypto = require('crypto')
const md5 = crypto.createHash('md5')

const email = "your.email@gmail.com"
const hash = md5.update(email.toLowerCase().trim(), 'binary').digest('hex')

console.log(`https://ja.gravatar.com/avatar/${hash}`)

というメモ書きです。