https://github.com/imcuttle/require-resolve-hook
Module to hook into the Node.js require and require.resolve function
https://github.com/imcuttle/require-resolve-hook
Last synced: 8 months ago
JSON representation
Module to hook into the Node.js require and require.resolve function
- Host: GitHub
- URL: https://github.com/imcuttle/require-resolve-hook
- Owner: imcuttle
- License: mit
- Created: 2020-10-26T11:55:36.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-10-18T07:57:30.000Z (over 3 years ago)
- Last Synced: 2025-03-23T02:34:05.647Z (about 1 year ago)
- Language: TypeScript
- Size: 140 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: License
Awesome Lists containing this project
README
# require-resolve-hook
[](https://travis-ci.org/imcuttle/require-resolve-hook)
[](https://codecov.io/github/imcuttle/require-resolve-hook?branch=master)
[](https://www.npmjs.com/package/require-resolve-hook)
[](https://www.npmjs.com/package/require-resolve-hook)
[](https://prettier.io/)
[](https://conventionalcommits.org)
> Module to hook into the Node.js require and require.resolve function
## Installation
```bash
npm install require-resolve-hook
# or use yarn
yarn add require-resolve-hook
```
## Usage
```javascript
import requireResolveHook, { bypass, unhook } from 'require-resolve-hook'
const { unhook: unhookReact, bypass: bypassReact } = requireResolveHook('react', (id, parent, isMain) => {
return '/path/to/your/custom-react' // absolute path
})
require.resolve('react') // => '/path/to/your/custom-react'
require('react') // => export '/path/to/your/custom-react'
bypassReact(() => require.resolve('react')) // => '/path/to/real-react'
unhookReact()
require.resolve('react') // => '/path/to/real-react'
```
## API
#### `requireResolveHook(match: Match, onResolve: OnResolve, options: Options)`
- **Returns:** `{ bypass: (fn) => ReturnType, unhook: () => void }`
`bypass` means:
```javascript
bypass = (fn) => {
unhook()
const res = fn()
hook()
return res
}
```
#### `StrictMatch`
- **Type:** `string | RegExp | (id: string) => boolean`
#### `Match`
- Type: `StrictMatch | StrictMatch[]`
#### `OnResolve`
- **Type:** `(id: string, parent: null | Module, isMain: boolean) => string | false`
#### `Options`
##### `ignoreModuleNotFoundError`
Should ignore `MODULE_NOT_FOUND` error?
```javascript
requireResolveHook('react', () => require.resolve('not_found_package'))
requireResolveHook('react', () => require.resolve('founded_react'))
require.resolve('react') === require.resolve('founded_react')
```
```javascript
requireResolveHook('react', () => require.resolve('not_found_package'), { ignoreModuleNotFoundError: false })
requireResolveHook('react', () => require.resolve('founded_react'))
require.resolve('react') // Throws MODULE_NOT_FOUND error
```
- **Type:** `boolean`
- **Default:** `true`
## FAQ
1. How to require the actual module in the mock file?
```javascript
import requireResolveHook, { bypass } from 'require-resolve-hook'
import * as Module from 'module'
requireResolveHook(/^react/, (id, parent, isMain, opts) => {
if (parent && parent.filename === '/path/to/mock/react') {
// Access the actual react filename
return bypass(() => Module._resolveFilename(id, parent, isMain, opts))
}
return '/path/to/mock/react'
})
```
## Contributing
- Fork it!
- Create your new branch:
`git checkout -b feature-new` or `git checkout -b fix-which-bug`
- Start your magic work now
- Make sure npm test passes
- Commit your changes:
`git commit -am 'feat: some description (close #123)'` or `git commit -am 'fix: some description (fix #123)'`
- Push to the branch: `git push`
- Submit a pull request :)
## Authors
This library is written and maintained by imcuttle, imcuttle@163.com.
## License
MIT - [imcuttle](https://github.com/imcuttle) 🐟