我是Browserify的新手并尝试以下方法: 我创建了一个节点服务器并尝试在浏览器上运行一个名为“openbci”的包。
所以我有以下文件结构:
Myapp
-...
-public
--app.js
--index.html
--openBCI.js
--...
--javascript
---openBCI
----bundle.js
---...
-node_modules
--openbci
---openBCIBoard.js
--browserify
--...
我的app.js
文件将服务器设置为提供public
文件夹
// app.js
var express = require('express');
var app = express();
app.use(express.static('public'));
app.listen(myPort);
然后我创建了以下openBCI.js
// openBCI.js
var OpenBCIBoard = require('openbci').OpenBCIBoard;
exports.OpenBCIBoard = OpenBCIBoard;
最后启动了browserify命令:
$ browserify public/openBCI.js > public/javascript/openBCI/bundle.js
但是在我的index.html
文件中调用后,我在Function.getRoot上获得了Uncaught TypeError: exists is not a function
:
exports.getRoot = function getRoot (file) {
var dir = dirname(file)
, prev
while (true) {
if (dir === '.') {
// Avoids an infinite loop in rare cases, like the REPL
dir = process.cwd()
}
**if (exists(join(dir, 'package.json')) || exists(join(dir, 'node_modules'))) {**
// Found the 'package.json' file or 'node_modules' dir; we're done
return dir
}
if (prev === dir) {
// Got to the top
throw new Error('Could not find module root given file: "' + file
+ '". Do you have a `package.json` file? ')
}
// Try the parent dir next
prev = dir
dir = join(dir, '..')
}
}
似乎无法找到模块的原始路径。 你能告诉我改变什么吗?或者,如果我完全理解browserify如何工作? :)
答案 0 :(得分:1)
我注意到一些关于代码看起来很奇怪的事情。
exists
在JavaScript或节点中未定义。它似乎是fs.exists
的别名 - 是吗?如果是,则不推荐使用fs.exists。根据文档,您可以使用fs.stat
或fs.access
获得相同的效果。但请注意,您应该提供回调(最好)或使用这些方法的同步版本。
我建议运行依赖服务器端服务器端文件的代码,而不是浏览器。