1

Initial commit

This commit is contained in:
2025-03-28 12:57:37 +01:00
commit ed9ddcfdc8
1841 changed files with 42303 additions and 0 deletions

13
tools/test_puppeteer.js Normal file
View File

@@ -0,0 +1,13 @@
const { scrapePage } = require("./lib/puppeteer");
const path = require("path");
(async () => {
const testUrl = "https://richard.dern.ovh";
const screenshotPath = path.join(__dirname, "test_screenshot.png");
console.log(`🔍 Testing Puppeteer module on: ${testUrl}`);
const metadata = await scrapePage(testUrl, screenshotPath);
console.log("📄 Page metadata:");
console.log(metadata);
})();