Growl style notifications for a web app.
Forked from Hampus Persson's Pen Notifications.
A Pen by Captain Anonymous on CodePen.
| module.exports.myFunction = () => { | |
| console.log('external!') | |
| } |
| const puppeteer = require('puppeteer'); | |
| (async () => { | |
| const browser = await puppeteer.launch() | |
| const page = await browser.newPage() | |
| await page.setViewport({ width: 1280, height: 800 }) | |
| await page.goto('https://danube-webshop.herokuapp.com') | |
| await page.screenshot({ path: 'external.png' }) | |
| await browser.close() | |
| })() |
Growl style notifications for a web app.
Forked from Hampus Persson's Pen Notifications.
A Pen by Captain Anonymous on CodePen.