html-to-base64-image
Html to base64 Image
Install
npm i html-to-base64-image
# or
yarn add html-to-base64-image
Usage
const htmlToBase64Image = require('html-to-base64-image');
htmlToBase64Image('<button>Hello</button>').then((data) => {
console.log(data);
});