Spaces:
Sleeping
Sleeping
| import { crawlWithBrowser } from "./lib/playwright-crawler"; | |
| async function main(){ | |
| const data = | |
| await crawlWithBrowser( | |
| "https://example.com" | |
| ); | |
| console.log( | |
| JSON.stringify( | |
| data, | |
| null, | |
| 2 | |
| ) | |
| ); | |
| } | |
| main(); | |