pfp.js
v1.0.0
Published
A library for creating beautiful identicons.
Downloads
2
Readme
Pfp.js
A library for creating beautiful identicons.
Usage
the default export is an async function await pfp({name:"Test"})
it returns a sharp.js object
const pfp = require('pfp.js');
(async() => {
let av = await pfp({ name: "Test" });
await av.png().toFile('./test.png');
})()