Skip to main content

TarballHttpFetcher

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.

Implements

Index

Constructors

constructor

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).


    Parameters

    Returns Promise<{ checksum: null | string; packageFs: FakeFS<PortablePath>; prefixPath: PortablePath; releaseFs: () => void }>

fetchFromNetwork

getLocalPath

  • This function must return the local path for the given package. The local path is the one that's used to resolve relative dependency sources, for example "file:./foo".


    Parameters

    Returns null

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