# Deno Land X Fresh and Hono Module Scraper

**Use case:** 

Scrape deno.land/x modules fresh and hono with description, star count, popularity, latest version, version history, and repository. Export to JSON or CSV.

## Input

```json
{
  "modules": [
    "fresh",
    "hono"
  ],
  "includeVersions": true,
  "maxItems": 5
}
```

## Output

```json
{
  "name": {
    "label": "📦 Module",
    "format": "text"
  },
  "description": {
    "label": "📝 Description",
    "format": "text"
  },
  "starCount": {
    "label": "⭐ Stars",
    "format": "number"
  },
  "latestVersion": {
    "label": "🏷 Latest",
    "format": "text"
  },
  "versionCount": {
    "label": "🔢 Versions",
    "format": "number"
  },
  "latestVersionUploadedAt": {
    "label": "📅 Uploaded",
    "format": "date"
  },
  "repository": {
    "label": "🐙 Repo",
    "format": "text"
  },
  "url": {
    "label": "🔗 URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "🕒 Scraped",
    "format": "date"
  },
  "error": {
    "label": "❌ Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Deno Land X Modules Scraper](https://apify.com/parseforge/deno-land-x-modules-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/deno-land-x-modules-scraper) to learn more, explore other use cases, and run it yourself.