Solves the relative path problem in Node.js by allowing the target module argument of a require call to be relative to the root directory of the containing package:
For example:
Given a JavaScript module at my-package/src/some/deeply/nested/path/foo/index.js that needs to require my-package/src/util/bar.js:
Without require-self-ref:
require('../../../../../../util/bar');😕
And with require-self-ref installed:
require('~/src/util/bar');😄
npm install require-self-refAt the top of the main entry for your application add the following line:
require('require-self-ref');- Your package must have a
package.jsonfile at the root and thatpackage.jsonfile must have a"name"property - Use at your own risk (this package monkey-patches the Node.js require system and it depends on internals of Node.js that may change in the future)
- Compatible with all versions of Node.js
- app-module-path - Simple module to add additional directories to the Node module search for top-level app modules
- wavy - Similar to this package, but requires a
postinstallscript and symbolic links
MIT