2.精通前端系列技術之seajs和gruntJs結合開發(三)

來源:互聯網
上載者:User

標籤:

1.我們先來瞭解下模組化曆史

模組化曆史nodeJS的出現(http://nodejs.org/)commonJS規範(http://www.commonjs.org/)瀏覽器JS的模組化?AMD規範(http://wiki.commonjs.org/wiki/Modules/AsynchronousDefinition)requireJS庫(http://requirejs.org/CMD規範Seajs採用的

我們通常開發前端的時候分為線下和線上,線下直接開發調試指令碼,而線上是很多個指令檔合并成一個壓縮加密,減少http請求,這個時候我們需要構建工具

2.我們開始瞭解構建工具安裝流程

構建工具gruntjs( http://gruntjs.com/ )安裝流程先安裝nodejs和npm(包管理工具)npm install -g grunt-clinpm install grunt --save-devgrunt –versionnpm install grunt --save-dev

3.gruntjs的基本使用

構建工具gruntjs( http://gruntjs.com/ )使用流程外掛程式的概念package.jsonGruntfile.js

 1.cmd進入目錄

2.npm install(package.json引用哪些外掛程式就下載哪些外掛程式)

 3.gruntfile.js

module.exports = function(grunt) {        grunt.initConfig({                 pkg: grunt.file.readJSON(‘package.json‘),                  concat : {             webqq : {                 files : {                     ‘dist/main.js‘ : [‘main.js‘,‘drag.js‘,‘scale.js‘,‘range.js‘]                 }             }         },         uglify : {             webqq : {                 files : {                     ‘dist/main.min.js‘ : [‘dist/main.js‘]                  }             }         }            });        grunt.loadNpmTasks(‘grunt-contrib-concat‘);    grunt.loadNpmTasks(‘grunt-contrib-uglify‘);      grunt.registerTask(‘default‘, [‘concat‘,‘uglify‘]);    };

 4.敲入cmd命令:grunt 命令

源碼下載

2.精通前端系列技術之seajs和gruntJs結合開發(三)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.