首页 > Web开发 > 详细

[Node.js] Broswerify -- 2

时间:2014-12-10 21:05:52      阅读:368      评论:0      收藏:0      [点我收藏+]

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:

bubuko.com,布布扣

All those are turned to the upper case.

 

[Node.js] Broswerify -- 2

原文:http://www.cnblogs.com/Answer1215/p/4156271.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!