我只想尝试使用browserify生成多个捆绑包的简单示例,但我无法让它工作。我从browserify文档(https://github.com/substack/node-browserify#multiple-bundles)开始使用这个简单的示例:
beep.js:
var robot = require('./robot');
alert(robot('beep'));
robot.js:
module.exports = function (s) { return s.toUpperCase() + '!' };
然后构建捆绑包:
browserify -r ./robot.js > common.js
browserify -x ./robot.js beep.js -d > beep_bundle.js
我的页面:
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>beep</title>
<script src="common.js"></script>
<script src="beep_bundle.js"></script>
</head>
<body>
</body>
</html>
我发现当它运行时,我收到一个错误:
Uncaught Error: Cannot find module '/robot.js'
这似乎是因为两个输出文件beep_bundle.js
和common.js
之间存在差异。
beep_bundle.js(注意字符串“/robot.js”出现在映射中):
(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
var robot = require('./robot.js');
alert(robot('beep'));
},{"./robot.js":"/robot.js"}]},{},[1])
//# ...
common.js(注意字符串“./robot.js”出现在映射中):
require=(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({"./robot.js":[function(require,module,exports){
module.exports = function (s) { return s.toUpperCase() + '!' };
},{}]},{},[])
//# ...
如果我手动编辑beep_bundle.js以获得“./robot.js”,它可以正常工作。我该怎么做才能使这项工作正常进行?
答案 0 :(得分:1)
甚至不使用Browserify 5+尝试此操作,它已经严重破坏...... https://github.com/substack/node-browserify/issues/933