标签: javascript node.js browser module
您正在编写依赖于lib Y的lib X.您希望该库在node.js和浏览器上运行。在node.js上,您将使用require('Y')。在浏览器上,您可以使用require.js。实现它的正确方法是什么,以便您的lib是跨平台的?
require('Y')
答案 0 :(得分:4)
这个似乎很受欢迎......
https://github.com/substack/node-browserify
答案 1 :(得分:2)
你可以尝试https://github.com/component/component。它类似于browserify