码迷,mamicode.com
首页 > Web开发 > 详细

[Node.js] Broswerify -- 2

时间:2014-12-10 21:06:42      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   os   sp   java   

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

标签:style   blog   http   io   ar   color   os   sp   java   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!