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
@listingclown3
listingclown3 / discord.js
Created April 15, 2023 07:10
How to log into Discord using your token through Puppeteer
const puppeteer = require('puppeteer');
(async () => {
// Launch puppeteer instance
console.log("Launching Puppeteer browser...")
const browser = await puppeteer.launch();
const page = await browser.newPage();