@alvincrespo/hashnode-content-converter - v0.2.2
    Preparing search index...

    Interface ImageProcessorOptions

    Configuration options for ImageProcessor. These options are passed through to the ImageDownloader service.

    interface ImageProcessorOptions {
        downloadDelayMs?: number;
        maxRetries?: number;
        retryDelayMs?: number;
        timeoutMs?: number;
    }
    Index

    Properties

    downloadDelayMs?: number

    Delay in milliseconds between consecutive downloads. Helps avoid rate limiting from CDN.

    200 (matches reference implementation)
    
    maxRetries?: number

    Maximum number of retry attempts for failed downloads. Does not apply to HTTP 403 errors (permanent failures).

    3
    
    retryDelayMs?: number

    Delay in milliseconds between retry attempts.

    1000
    
    timeoutMs?: number

    Timeout in milliseconds for each download attempt.

    30000 (30 seconds)