Skip to content

Instantly share code, notes, and snippets.

View DevGod100's full-sized avatar
💭
Working on the next big thing💻

Steve Loewenstein DevGod100

💭
Working on the next big thing💻
View GitHub Profile
const { launch } = require("puppeteer");
(async () => {
// Launch puppeteer instance
console.log("Launching Puppeteer browser...");
const browser = await launch({
headless: "new"
});