Skip to content

Instantly share code, notes, and snippets.

View DevGod100's full-sized avatar
💭
Burnout🔥💻

Steve Loewenstein DevGod100

💭
Burnout🔥💻
View GitHub Profile
const { launch } = require("puppeteer");
(async () => {
// Launch puppeteer instance
console.log("Launching Puppeteer browser...");
const browser = await launch({
headless: "new"
});