Node récupérer l'image à la base64
import fetch from 'node-fetch'
const res = await fetch(image)
const imgBody = `data:${res.headers.get('content-type')};base64,${(await res.arrayBuffer()).toString('base64')}`
grallm