image-host-embed
v1.4.0
Published
### Public npm package to have easy embeds for image hosts
Downloads
13
Readme
Image host embed generator
Public npm package to have easy embeds for image hosts
ez
const EmbedGenerator = require('image-host-embed');
const embeds = new EmbedGenerator({
title: 'site title'
});
console.log(
embeds.image({
title: 'embed title',
author: '1nch',
description: 'embed description woah',
url: 'https://i.1nch.dev/ico/favicon.ico',
color: '4287f5'
}),
embeds.video({
title: 'embed title',
author: '1nch',
description: 'embed description woah',
url: 'some random mp4',
color: '4287f5'
})
);