Socket
Socket
Sign inDemoInstall

resolve

Package Overview
Dependencies
0
Maintainers
0
Versions
95
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    resolve

A more hookable require.resolve() implementation


Version published
Maintainers
0
Install size
5.78 kB
Created

Package description

What is resolve?

The resolve npm package is a module for resolving file paths within a project. It is particularly useful for resolving the path of a module as Node.js would, taking into account node_modules folders and the package.json file. It can be used both programmatically and as a command-line tool.

What are resolve's main functionalities?

Asynchronously resolve the path of a module

This feature allows you to asynchronously find the path of a module from a given base directory. The callback receives the resolved path or an error if the module cannot be found.

const resolve = require('resolve');
resolve('module_name', { basedir: '/some/path' }, function (err, res) {
  if (err) console.error(err);
  else console.log(res);
});

Synchronously resolve the path of a module

This feature allows you to synchronously find the path of a module from a given base directory. It either returns the resolved path or throws an error if the module cannot be found.

const resolve = require('resolve');
try {
  const res = resolve.sync('module_name', { basedir: '/some/path' });
  console.log(res);
} catch (err) {
  console.error(err);
}

Resolve a module with custom package filter

This feature allows you to specify a custom filter function to modify the package data before the resolution process. This can be useful for redirecting the main entry point of a package.

const resolve = require('resolve');
const opts = {
  packageFilter: function (pkg) {
    if (pkg.main) {
      pkg.main = 'some-other-file.js';
    }
    return pkg;
  }
};
resolve('module_name', opts, function (err, res) {
  if (err) console.error(err);
  else console.log(res);
});

Command-line interface

The resolve package also provides a command-line interface (CLI) that can be used to resolve the path of a module from the command line.

$ resolve module_name --basedir=/some/path

Other packages similar to resolve

Readme

Source

resolve

Implements the node require.resolve() algorithm except you can pass in the file to compute paths relatively to along with your own require.paths without updating the global copy (which doesn't even work in node >=0.5).

methods

var resolve = require('resolve');

resolve.sync(pkg, opts={paths:[],basedir:__dirname})

Synchronously search for the package/filename string pkg according to the require.resolve() algorithm for X=pkg and Y=opts.basedir.

If nothing is found, all of the directories in opts.paths are searched.

resolve.isCore(pkg)

Return whether a package is in core.

Keywords

FAQs

Last updated on 18 Jun 2011

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc