Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jgoux/resolvify
Browserify transform using nodeJS module resolution algorithm
https://github.com/jgoux/resolvify
Last synced: about 11 hours ago
JSON representation
Browserify transform using nodeJS module resolution algorithm
- Host: GitHub
- URL: https://github.com/jgoux/resolvify
- Owner: jgoux
- License: mit
- Created: 2015-02-23T07:32:22.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-02T00:37:58.000Z (almost 9 years ago)
- Last Synced: 2024-10-03T09:35:55.397Z (about 1 month ago)
- Language: JavaScript
- Size: 6.84 KB
- Stars: 4
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# resolvify
Browserify transform using nodeJS module resolution algorithm## Install
```
npm install resolvify --save-dev
```## Use
Add a **resolvify** entry in your package.json or pass as cli option to transform:
```javascript
//package.json
...
resolvify: ["shared"]
...
```
```
browserify -t [ resolvify common ]
```Then both the folders "shared" and "common" will be resolved like "node_modules".