Skip to content

Instantly share code, notes, and snippets.

View listingclown3's full-sized avatar
💭
Starving in _Quishy_'s basement

list three listingclown3

💭
Starving in _Quishy_'s basement
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();