npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

bare-module-resolve

v1.6.1

Published

Low-level module resolution algorithm for Bare

Downloads

1,430

Readme

bare-module-resolve

Low-level module resolution algorithm for Bare. The algorithm is implemented as a generator function that yields either package manifests to be read or resolution candidates to be tested by the caller. As a convenience, the main export is a synchronous and asynchronous iterable that relies on package manifests being read by a callback. For asynchronous iteration, the callback may return promises which will be awaited before being passed to the generator.

npm i bare-module-resolve

Usage

For synchronous resolution:

const resolve = require('bare-module-resolve')

function readPackage (url) {
  // Read and parse `url` if it exists, otherwise `null`
}

for (const resolution of resolve('./file.js', new URL('file:///directory/'), readPackage)) {
  console.log(resolution)
}

For asynchronous resolution:

const resolve = require('bare-module-resolve')

async function readPackage (url) {
  // Read and parse `url` if it exists, otherwise `null`
}

for await (const resolution of resolve('./file.js', new URL('file:///directory/'), readPackage)) {
  console.log(resolution)
}

API

const resolver = resolve(specifier, parentURL[, options][, readPackage])

Resolve specifier relative to parentURL, which must be a WHATWG URL instance. readPackage is called with a URL instance for every package manifest to be read and must either return the parsed JSON package manifest, if it exists, or null. If readPackage returns a promise, synchronous iteration is not supported.

Options include:

{
  // A default "imports" map to apply to all specifiers. Follows the same
  // syntax and rules as the "imports" property defined in `package.json`.
  imports,
  // A list of builtin module specifiers. If matched, the protocol of the
  // resolved URL will be `builtinProtocol`.
  builtins: [],
  // The protocol to use for resolved builtin module specifiers.
  builtinProtocol: 'builtin:',
  // The supported import conditions. "default" is always recognized.
  conditions: [],
  // The supported engine versions.
  engines: {},
  // The file extensions to look for. Must be provided to support extensionless
  // specifier resolution and directory support, such as resolving './foo' to
  // './foo.js' or './foo/index.js'.
  extensions: [],
  // A map of preresolved imports with keys being serialized parent URLs and
  // values being "imports" maps.
  resolutions
}

for (const resolution of resolver)

Synchronously iterate the module resolution candidates. The resolved module is the first candidate that exists, either as a file on a file system, a resource at a URL, or something else entirely.

for await (const resolution of resolver)

Asynchronously iterate the module resolution candidates. If readPackage returns promises, these will be awaited. The same comments as for (const resolution of resolver) apply.

Algorithm

The following generator functions implement the resolution algorithm, which has been adapted from the Node.js resolution algorithms for CommonJS and ES modules. Unlike Node.js, Bare uses the same resolution algorithm for both module formats.

To drive the generator functions, a loop like the following can be used:

const generator = resolve.module(specifier, parentURL)

let next = generator.next()

while (next.done !== true) {
  const value = next.value

  if (value.package) {
    const info = /* Read and parse `value.package` if it exists, otherwise `null` */;

    next = generator.next(info)
  } else {
    const resolution = value.resolution

    next = generator.next()
  }
}

Options are the same as resolve() for all functions.

const generator = resolve.module(specifier, parentURL[, options])

  1. If specifier starts with a Windows drive letter:
    1. Prepend / to specifier.
  2. If options.resolutions is set:
    1. If preresolved(specifier, options.resolutions, parentURL, options) returns true:
      1. Return true.
  3. If url(specifier, parentURL, options) returns true:
    1. Return true.
  4. If packageImports(specifier, parentURL, options) returns true:
    1. Return true.
  5. If specifier equals . or .., or if specifier starts with /, \, ./, .\, ../, or ..\:
    1. If options.imports is set:
      1. If packageImportsExports(specifier, options.imports, parentURL, true, options) returns true:
        1. Return true.
    2. Let yielded be false.
    3. If file(specifier, parentURL, false, options) returns true:
      1. Set yielded to true.
    4. If directory(specifier, parentURL, options) returns true:
      1. Set yielded to true.
    5. Return yielded.
  6. Return package(specifier, parentURL, options).

const generator = resolve.url(url, parentURL[, options])

  1. If url is not a valid URL:
    1. Return false.
  2. If options.imports is set:
    1. If packageImportsExports(url.href, options.imports, parentURL, true, options) returns true:
      1. Return true.
  3. If url.protocol equals node::
    1. Let specifier be url.pathname.
    2. If specifier equals . or .., or if specifier starts with /, \, ./, .\, ../, or ..\, throw.
    3. Return package(specifier, parentURL, options)
  4. Yield url and return true.

const generator = resolve.preresolved(specifier, resolutions, parentURL[, options])

  1. Let imports be resolutions[parentURL].
  2. If imports is a non-null object:
    1. Return packageImportsExports(specifier, imports, parentURL, true, options)
  3. Return false.

const generator = resolve.package(packageSpecifier, parentURL[, options])

  1. Let packageName be undefined.
  2. If packageSpecifier is the empty string, throw.
  3. If options.builtins includes packageSpecifier:
    1. Yield options.builtinProtocol concatenated with packageSpecifier and return true.
  4. If packageSpecifier does not start with @:
    1. Set packageName to the substring of packageSpecifier until the first / or the end of the string.
  5. Otherwise:
    1. If packageSpecifier does not include /, throw.
    2. Set packageName to the substring of packageSpecifier until the second / or the end of the string.
  6. If packageName starts with . or includes \ or %, throw.
  7. Let packageSubpath be . concatenated with the substring of packageSpecifier from the position at the length of packageName.
  8. If packageSelf(packageName, packageSubpath, parentURL, options) returns true:
    1. Return true.
  9. Repeat:
    1. Let packageURL be the resolution of node_modules/ concatenated with packageName and / relative to parentURL.
    2. Set parentURL to the substring of parentURL until the last /.
    3. Let info be the result of yielding the resolution of package.json relative to packageURL.
    4. If info is not null:
      1. If info.engines is set:
        1. Call validateEngines(packageURL, info.engines, options).
      2. If info.exports is set:
        1. Return packageExports(packageURL, packageSubpath, info.exports, options).
      3. If packageSubpath is .:
        1. If info.main is a non-empty string:
          1. Set packageSubpath to info.main.
        2. Otherwise:
          1. Return file('index', packageURL, true, options).
      4. Let yielded be false.
        1. If file(packageSubpath, packageURL, false, options) returns true:
          1. Set yielded to true.
        2. If directory(packageSubpath, packageURL, options) returns true:
          1. Set yielded to true.
        3. Return yielded.
    5. If parentURL is the file system root:
      1. Return false.

const generator = resolve.packageSelf(packageName, packageSubpath, parentURL[, options])

  1. For each value packageURL of lookupPackageScope(parentURL, options):
    1. Let info be the result of yielding packageURL.
    2. If info is not null:
      1. If not info.name equals packageName:
        1. Return false.
      2. If info.exports is set:
        1. Return packageExports(packageURL, packageSubpath, info.exports, options).
      3. If packageSubpath is .:
        1. If info.main is a non-empty string:
          1. Set packageSubpath to info.main.
        2. Otherwise:
          1. Return file('index', packageURL, true, options).
      4. Let yielded be false.
        1. If file(packageSubpath, packageURL, false, options) returns true:
          1. Set yielded to true.
        2. If directory(packageSubpath, packageURL, options) returns true:
          1. Set yielded to true.
        3. Return yielded.
  2. Return false.

const generator = resolve.packageExports(packageURL, subpath, exports[, options])

  1. If subpath is .:
    1. Let mainExport be undefined.
    2. If exports is a string or an array:
      1. Set mainExport to exports.
    3. If exports is a non-null object:
      1. If some keys of exports start with .:
        1. If . is a key of exports:
          1. Set mainExport to exports['.'].
      2. Otherwise:
        1. Set mainExport to exports.
    4. If mainExport is not undefined:
      1. If packageTarget(packageURL, mainExport, null, false, options) returns true:
        1. Return true.
  2. Otherwise, if exports is a non-null object:
    1. If every key of exports starts with .:
      1. If packageImportsExports(subpath, exports, packageURL, false, options) returns true:
        1. Return true.
  3. Throw.

const generator = resolve.packageImports(specifier, parentURL[, options])

  1. If specifier is # or starts with #/, throw.
  2. For each value packageURL of lookupPackageScope(parentURL, opions):
    1. Let info be the result of yielding packageURL.
    2. If info is not null:
      1. If info.imports is set:
        1. If packageImportsExports(specifier, info.imports, packageURL, true, options) returns true:
          1. Return true.
      2. If specifier starts with #, throw.
      3. Return false.
  3. If options.imports is set:
    1. If packageImportsExports(url.href, options.imports, parentURL, true, options) returns true:
      1. Return true.
  4. Return false.

const generator = resolve.packageImportsExports(matchKey, matchObject, packageURL, isImports[, options])

  1. If matchKey is a key of matchObject and matchKey does not include *:
    1. Let target be matchObject[matchKey].
    2. Return packageTarget(packageURL, target, null, isImports, options).
  2. Let expansionKeys be the keys of matchObject that include * sorted by patternKeyCompare.
  3. For each value expansionKey of expansionKeys:
    1. Let patternBase be the substring of expansionKey until the first *.
    2. If matchKey starts with but isn't equal to patternBase:
      1. Let patternTrailer be the substring of expansionKey from the position at the index after the first *.
      2. If patternTrailer is the empty string, or if matchKey ends with patternTrailer and the length of matchKey is greater than or equal to the length of expansionKey:
        1. Let target be matchObject[expansionKey].
        2. Let patternMatch be the substring of matchKey from the position at the length of patternBase until the length of matchKey minus the length of patternTrailer.
        3. Return packageTarget(packageURL, target, patternMatch, isImports, options).
  4. Return false.

const generator = resolve.packageTarget(packageURL, target, patternMatch, isImports[, options])

  1. If target is a string:
    1. If target does not start with ./ and isImports is false, throw.
    2. If patternMatch is not null:
      1. Replace every instance of * in target with patternMatch.
    3. If url(target, packageURL, options) returns true:
      1. Return true.
    4. If target equals . or .., or if target starts with /, ./, or ../:
      1. Yield the resolution of target relative to packageURL and return true.
    5. Return package(target, packageURL, options).
  2. If target is an array:
    1. For each value targetValue of target:
      1. If packageTarget(packageURL, targetValue, patternMatch, isImports, options) returns true:
        1. Return true.
  3. If target is a non-null object:
    1. For each key p of target:
      1. If p equals default or if options.conditions includes p:
        1. Let targetValue be target[p].
        2. Return packageTarget(packageURL, targetValue, patternMatch, isImports, options).
  4. Return false.

const generator = resolve.file(filename, parentURL, isIndex[, options])

  1. If filename equals . or .., or if filename ends with / or \:
    1. Return false.
  2. If parentURL is a file: URL and filename includes encoded / or \, throw.
  3. If isIndex is false:
    1. Yield the resolution of filename relative to parentURL.
  4. For each value ext of options.extensions:
    1. Yield the resolution of filename concatenated with ext relative to parentURL.
  5. If isIndex is false or options.extensions is non-empty:
    1. Return true.
  6. Return false.

const generator = resolve.directory(dirname, parentURL[, options])

  1. Let directoryURL be undefined.
  2. If dirname ends with / or \:
    1. Set directoryURL to the resolution of dirname relative to parentURL.
  3. Otherwise:
    1. Set directoryURL to the resolution of dirname concatenated with / relative to parentURL.
  4. Let info be the result of yielding the resolution of package.json relative to directoryURL.
  5. If info is not null:
    1. If info.exports is set:
      1. Return packageExports(directoryURL, '.', info.exports, options).
    2. If info.main is a non-empty string:
      1. Let yielded be false.
      2. If file(info.main, directoryURL, false, options) returns true:
        1. Set yielded to true.
      3. If directory(info.main, directoryURL, options) returns true:
        1. Set yielded to true.
      4. Return yielded.
  6. Return file('index', directoryURL, true, options).

License

Apache-2.0