Rustic Boho Wedding Invitation Together with their families, Bride’s Name & Groom’s Name invite you to join them as they celebrate their love on [Wedding Date] at [Venue] Save as Image const puppeteer = require('puppeteer'); (async () => { const browser = await puppeteer.launch(); const page = await browser.newPage(); await page.setContent(` Bride’s Name & Groom’s Name Together with their families invite you to celebrate their love on [Wedding Date] `); await page.screenshot({ path: 'invitation.png' }); await browser.close(); })();