Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface Fetcher

Fetchers are the component tasked from taking a locator and fetching its file data from whatever location the fetcher deems right. For example, the npm fetcher would download them from the npm registry while the workspace fetcher would simply return an plain link to the filesystem.

Hierarchy

  • Fetcher

Implemented by

Methods

fetch

  • This function must return a object describing where the package manager can find the data for the specified package on disk.

    The return value is a more complex than a regular path (cf FetchResult) because the fetchers are allowed to return virtual paths that point to things that don't actually exist (for example directories stored within zip archives).

    The return value is a more complex than a regular path (cf FetchResult) because the fetchers are allowed to return virtual paths that point to things that don't actually exist (for example directories stored within zip archives).

    Parameters

    Returns Promise<FetchResult>

getLocalPath

supports

  • This function must return true if the specified locator is understood by this resolver (only its syntax is checked, it doesn't have to be valid and it's fine if the fetch ends up returning a 404).

    Parameters

    Returns boolean

Generated using TypeDoc