New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

force-resolve

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

force-resolve

Ensure that a NPM dependency is resolved. Similar to force-require but return the path of the dependency instead.

latest
Source
npmnpm
Version
1.0.2
Version published
Maintainers
1
Created
Source

Force Resolve

Last version Build Status Dependency status Dev Dependencies Status NPM Status Donate

Ensure to resolve the path of a NPM dependency. Similar to force-require but return the path of the dependency instead.

Install

npm install force-resolve --save

Usage

var forceResolve = require('force-resolve');

// [
//   '/Users/kikobeats/Projects/force-resolve/node_modules/mocha',
//   '/usr/local/lib/node_modules/mocha'
// ]

API

forceResolve.(<String>, [cb])

Try to load a dependency based in the name. If cb is provided then the call will be resolved as sync interface.

Internally the library follow the next algorithm:

  • Try to require the dependency locally. This means that exists in the current process.cwd()/node_modules folder as direct dependency or a dependency of another dependency.

  • If not possible to resolve locally, then try to resolve globally in your system. Try to require the dependency globally using the module global-modules.

  • At this poin of the algorithm, the dependency was not found. Let's install as global module and later require it.

License

MIT © Kiko Beats

Keywords

npm

FAQs

Package last updated on 04 Oct 2015

Did you know?

Socket

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