Skip to content

Latest commit

 

History

History
56 lines (40 loc) · 1.7 KB

README.md

File metadata and controls

56 lines (40 loc) · 1.7 KB

scrapedown

Deploy to Cloudflare Workers

This project is a Cloudflare worker designed to scrape web pages and extract useful information, including a markdown-formatted version of the content. It's built to handle requests to scrape a given URL and return structured data about the page.

Features

  • Fetch and scrape content from any given URL.
  • Extract metadata such as title, byline, excerpt, and more.
  • Convert HTML content to clean markdown format.
  • Handle requests with optional markdown formatting.
  • Remove everything but the content (Reader Mode)

Usage

To use this worker, send a GET request to the worker's endpoint with the url query parameter specifying the page to be scraped. Optionally, you can include the markdown query parameter to specify whether the content should be returned in markdown format (default: true). e

Example Request

GET https://<worker-name>.workers.dev/?url=https://example.com&markdown=true

Example Response

{
  "page": {
    "byline": "Author Name",
    "content": "... stripped html content ...",
    "dir": null,
    "excerpt": "..."
    "lang": null,
    "length": 191,
    "siteName": null,
    "textContent": "... markdown content ...",
    "title": "Example Domain"
  }
}

Deployment

To deploy this Cloudflare worker, you have two options:

  1. Use Wrangler CLI:

    npx wrangler deploy
  2. Click the "Deploy to Cloudflare Workers" button at the top of this README.