码迷,mamicode.com
首页 > 其他好文 > 详细

Browserify模块化使用教程

时间:2019-02-26 01:08:54      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:start   OLE   data   模块   block   class   app   使用教程   npm   

Browserify模块化使用教程

  1. 创建项目结构

    |-js
    |-dist //打包生成文件的目录
    |-src //源码所在的目录
      |-module1.js
      |-module2.js
      |-module3.js
      |-app.js //应用主源文件
    |-index.html
    |-package.json
    {
      "name": "browserify-test",
      "version": "1.0.0"
    }
  2. 下载browserify

    • 全局: npm install browserify -g

    • 局部: npm install browserify --save-dev

  3. 定义模块代码

    • module1.js


      module.exports = {
      foo() {
        console.log(‘moudle1 foo()‘)
      }
      }
    • module2.js


      module.exports = function () {
      console.log(‘module2()‘)
      }
    • module3.js

      exports.foo = function () {
      console.log(‘module3 foo()‘)
      }
      ?
      exports.bar = function () {
      console.log(‘module3 bar()‘)
      }
    • app.js (应用的主js)


      //引用模块
      let module1 = require(‘./module1‘)
      let module2 = require(‘./module2‘)
      let module3 = require(‘./module3‘)
      ?
      let uniq = require(‘uniq‘)
      ?
      //使用模块
      module1.foo()
      module2()
      module3.foo()
      module3.bar()
      ?
      console.log(uniq([1, 3, 1, 4, 3]))
  • 打包处理js:

    • browserify js/src/app.js -o js/dist/bundle.js

  • 页面使用引入:

Browserify模块化使用教程

标签:start   OLE   data   模块   block   class   app   使用教程   npm   

原文地址:https://www.cnblogs.com/chenyanlong/p/10434675.html

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