最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How does one specify a custom search path with Browserify? - Stack Overflow

programmeradmin0浏览0评论

I have a large project that consists of hundreds of source files broken into several folders.

Something like this:

src/
  AAA.js
  subdir/
    DDD.js

I would like to be able to specify dependencies with non-relative paths.

For instance, in DDD.js I would like to do this:

var AAA = require('AAA');

...rather than this:

var AAA = require('../AAA');

How can I achieve this with Browserify?

I have a large project that consists of hundreds of source files broken into several folders.

Something like this:

src/
  AAA.js
  subdir/
    DDD.js

I would like to be able to specify dependencies with non-relative paths.

For instance, in DDD.js I would like to do this:

var AAA = require('AAA');

...rather than this:

var AAA = require('../AAA');

How can I achieve this with Browserify?

Share Improve this question asked Mar 14, 2014 at 17:23 namuolnamuol 9,9966 gold badges43 silver badges54 bronze badges 1
  • You can't: github./substack/node-browserify/issues/170 – jgillich Commented Mar 14, 2014 at 17:35
Add a ment  | 

2 Answers 2

Reset to default 13

As stated in the documentation, Browserify uses browser-resolve under the hood.

When using the node API (as opposed to the CLI), you can specify a paths option which contains a list of directories to pass to browser-resolve.

The solution for my example would thus be something like this:

var browserify = require('browserify');
var b = browserify({
  paths: [
    __dirname + '/src'
  ]
});

b.add(__dirname + '/src/AAA.js');
b.bundle().pipe(process.stdout);

Or if you want to do it from the mand line you can add your directory to the node search path:

NODE_MODULES=$NODE_MODULES:src browserify -o output.js input.js
发布评论

评论列表(0)

  1. 暂无评论