我正在开发一个node.js应用程序,我想在客户端使用我为node.js服务器创建的模块。
示例模块是circle.js:
var PI = Math.PI;
exports.area = function (r) {
return PI * r * r;
};
exports.circumference = function (r) {
return 2 * PI * r;
};
你做了一个简单的
var circle = require('./circle')
在节点中使用它。
如何在我的客户端javascript的web目录中使用相同的文件?
答案 0 :(得分:46)
这似乎就是如何制作一个可以在客户端使用的模块。
http://caolanmcmahon.com/posts/writing_for_node_and_the_browser
mymodule.js:
(function(exports){
// your code goes here
exports.test = function(){
return 'hello world'
};
})(typeof exports === 'undefined'? this['mymodule']={}: exports);
然后在客户端上使用该模块:
<script src="mymodule.js"></script>
<script>
alert(mymodule.test());
</script>
此代码适用于节点:
var mymodule = require('./mymodule');
答案 1 :(得分:19)
答案 2 :(得分:2)
Webmake用于将CommonJS / NodeJS模块移植到浏览器。试一试