Skip to content

Instantly share code, notes, and snippets.

View ohjann's full-sized avatar
💭
🛸

Eoghan Hynes ohjann

💭
🛸
View GitHub Profile
@ohjann
ohjann / vaxxi.js
Last active July 15, 2021 13:34 — forked from cahalane/vaxxi.js
vaxxi with notifs
const notifier = require("node-notifier");
const puppeteer = require("puppeteer");
const p = {};
const setup = async () => {
const browser = await puppeteer.launch();
p.browser = browser;
return browser;
};