🚀 Launch Week Day 5:Introducing Immutable Scans.Learn More →
Socket
Book a DemoInstallSign in
Socket

find-module

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

find-module

find a module from a require path asyncronously using custom module folders

latest
Source
npmnpm
Version
0.2.1
Version published
Maintainers
1
Created
Source

find-module

Find a module specified by a require path using Node's module resolution.

npm install find-module

Usage

var findModule = require('find-module');

findModule('./some-path', {
	dirname: 'some-parent-dir' // the directory from which ./some-path should be resolved
}, function(err, filename) {
	console.log('some-path resolved to '+filename+' from some-parent-dir');
});

// or dont provide a callback to use the sync version

var filename = findModule('./some-path', {
	dirname: 'some-parent-dir' // the directory from which ./some-path should be resolved
});

console.log('some-path resolved to '+filename+' from some-parent-dir');

If you pass a module path ('my-module') find-module by default will look for a node_modules folder to find my-module. If you want to use a different module folder you can set the modules option

findModule('my-module', {
	modules: 'custom_modules',
	dirname: 'some-parent-dir'
}, ...);

When you resolve a path find-module by default will look for path+'.js' and path+'.json' if the path does not exist. If you want to look for other kind of extensions set the extensions option

findModule('my-module', {
	dirname: 'some-parent-dir',
	extensions: ['txt']
}, ...);

Combine the modules and extensions settings to roll out your own module finder. A template module finder could look like this

findModule('my-template', {
	dirname: 'some-parent-dir',
	modules: 'templates',
	extensions: ['html']
}, ...);

License

MIT

Keywords

modules

FAQs

Package last updated on 19 Aug 2013

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