Skip to content

Instantly share code, notes, and snippets.

View ASGdev's full-sized avatar
🔍
Looking for an internship worldwide !

Aurelien Surier Garofalo ASGdev

🔍
Looking for an internship worldwide !
View GitHub Profile
@ASGdev
ASGdev / at-tracker-scraper.js
Created January 16, 2021 01:27
AT tracker scraper for .eu domains
const fs = require('fs-extra')
const puppeteer = require('puppeteer')
async function run() {
const browser = await puppeteer.launch({headless: false});
const page = await browser.newPage();
page.on('console', msg => {
console.log("Message received")