Comment on Show HN: Crawlee – Web scraping and browser automation library for Node.jsparentComments−mnmkng4yThe example uses Crawlee already, you can just remove theimport { Actor } from 'apify';and then all references to Actor and either remove them or replace them with Crawlee functions.E.g. await Actor.openKeyValueStore() should be replaced with KeyValueStore.open()It makes sense to add a separate example for Crawlee though. But it's true that it does not exist yet.
Comments
The example uses Crawlee already, you can just remove the
import { Actor } from 'apify';
and then all references to Actor and either remove them or replace them with Crawlee functions.
E.g. await Actor.openKeyValueStore() should be replaced with KeyValueStore.open()
It makes sense to add a separate example for Crawlee though. But it's true that it does not exist yet.