* Save actors data to JSON file
(actors, filename = 'apify_actors.json')
| 137 | * Save actors data to JSON file |
| 138 | */ |
| 139 | function saveToJSON(actors, filename = 'apify_actors.json') { |
| 140 | const filePath = path.join(__dirname, '..', filename); |
| 141 | fs.writeFileSync(filePath, JSON.stringify(actors, null, 2), 'utf-8'); |
| 142 | console.log(`Saved ${actors.length} actors to ${filename}`); |
| 143 | } |
| 144 | |
| 145 | /** |
| 146 | * Generate a markdown file with all actors and affiliate links |