[Node.js] Broswerify -- 2
Browserify allows you to leverage 10s of thousands of javascript modules available in the Node Package Manager (npm) in your browser apps.
Notice:
// When there is ../ or ./, it will find the file accordingly var test = require(‘./test‘); // If there is no ../ or ./, it understands to find file in node_modules var _ = require(‘underscore‘);
entry.js:
/** * Created by Answer1215 on 12/10/2014. */ var test = require(‘./test‘); var _ = require(‘underscore‘);
var upper = _.map(test, function(s) { return s.toUpperCase(); // Should return the str to upper case }); console.log(upper);
test.js:
/** * Created by Answer1215 on 12/10/2014. */ module.exports = [‘foo‘, ‘bar‘, ‘tool‘];
Broswerfiy: can use ‘>‘ instead of ‘-o‘
browserify entry.js > bundle.js
You can see on the broswer:
All those are turned to the upper case.
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。