gulp + angularjs
示例项目介绍
文中使用的例子是一个基于 Angular.js 实现的网页版 Todo App,在 Github 中下载angular-quickstart。项目代码结构如下
清单 5. 项目目录结构
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
|--bower_components |--build |--node_modules |--static_pages |--js |--controllers |--services |--app.js // app 启动配置 |--style |--main.css |--view |--note.html |--gulpfile.js // gulp 配置 |--bower.json // bower 配置 |--package.json // node module 配置 |--index.html // app 启动文件 |
架构上使用如下 libs
- Angular:JavaScript 架构
- Bootstrap:样式控件库
- bower:管理项目依赖包
- npm:管理项目运行的依赖工具
- gulp:自动化构建工具
设计 build process
因为项目中使用到的 source code 有 JavaScript,,CSS,HTML 以及依赖 bower 导入的依赖包,所以我们将构建分成以下几个 task:
- jshint:编译 JavaScript
- clean:清空 build 目录
- template:合并并打包所有 HTML 模板文件生成 template.js
- js:压缩、混淆 JavaScript,并生成 sourcemap
- deployCSS:合并压缩 CSS
- devIndex:组织 develop 时的 index.html
- deployIndex:组织 deploy 时的 index.html,区别于第 6 个 task,这个 index.html 中 link 的将是压缩过的 CSS 和 JavaScript
接下来,我们分条介绍上面的 task。
设定全局变量 paths,记录 source code 的路径
清单 6. 项目 paths
1
2
3
4
5
6
7
|
var paths = { js: ['./js/app.js', 'js/**/*.js'], css: ['./style/**/*.css'], templates: './js/templates.js', buildjs: ['./build/**/*.js'], buildcss: ['./build/**/*.css'] }; |
task 1: jshint
这个 task 主要用来编译 JavaScript 代码。依赖插件 glup-jshint,需要在配置之前将这个插件安装好,之后如下配置:
清单 7. jshint
1
2
3
4
5
6
|
var jshint = require('gulp-jshint'); gulp.task('jshint', function() { gulp.src(paths.js) .pipe(jshint()) .pipe(jshint.reporter('default')); }); |
task 2: clean
我们可以看到项目目录中有个 build 文件夹,这个目录是用来存放所有 build 之后的 CSS/JS/HTML 文件。所以 clean 的任务是在每次 build 之前清理上一次 build 的 outputs,也就是清空 build 文件夹。依赖 del 模块:
清单 8. clean
1
2
3
4
5
|
var del = require('del'); gulp.task('clean', function() { // You can use multiple globbing patterns as you would with `gulp.src` return del(['./build', paths.templates]); }); |
task 3: template
开发过程中一般按照功能模块将页面分成不同的 HTML 片段模板,每个片段对应一个相应 controller,客户端浏览器访问网页时会分别请求下载 HTML 文件。当业务逻辑较为复杂时,项目中将会存在很多的 HTML 小文件,此时下载的请求数目也会很大,影响 performance。我们的想法是使用插件 gulp-angular-templatecache,将这些 HTML 模版片段合并成一个文件。这个插件会将所有模板文件合并成一个 template.js, 并将其作为项目中的一个 module 而存在。
清单 9. template
1
2
3
4
5
6
|
var templateCache = require('gulp-angular-templatecache'); gulp.task('template', function () { return gulp.src('./view/**/*.html') .pipe(templateCache({module: 'myApp'})) .pipe(gulp.dest('./js')) }); |
task 4: js
JavaScript 的 build 分成两种情况:
- DEV 模式:在开发环境中,为了方便 debug,JavaScript 通常不做压缩和混淆;
- PROD 模式:上生产环境时,JavaScript 必须并合压缩、混淆并成一个文件,同时需要去除所有的 log 输出语句。
JavaScript 混淆使用了插件 gulp-uglify;合并压缩使用了插件 gulp-concat,以及 gulp-sourcemaps;
去除 log 语句使用了插件 gulp-strip-debug。
清单 10. gulp 任务 js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
gulp.task('js', function() { if (deployEnvironment == Environment.DEV) { // DEV return gulp.src(paths.js) .pipe(concat('all.js')) .pipe(gulp.dest('./build')); } else { // PROD return gulp.src(paths.js) .pipe(sourcemaps.init()) .pipe(stripDebug()) .pipe(uglify()) .pipe(concat('all.min.js')) .pipe(sourcemaps.write()) .pipe(gulp.dest('./build')); } }); |
task 5: css
文中示例的样式表使用的是原生的 CSS 文件,所以使用 cssmin 完成了所有 CSS 文件的合并及压缩。
清单 11. gulp 任务 css
1
2
3
4
5
6
7
|
var cssmin = require('gulp-cssmin'); gulp.task('deployCSS', function() { return gulp.src(paths.css) .pipe(cssmin()) .pipe(concat('all.css')) .pipe(gulp.dest('./build')); }); |
task 6: devIndex
这个 task 主要是管理开发使用的 index.html 文件中对静态资源的引用。因为我们使用了 bower 来管理项目的依赖包,比如 jQuery 和 Angular,我们使用下面这种方式来导入项目:
清单 12. 引用静态资源
1
2
|
<script src="bower_components/jquery/dist/jquery.js"> </script> <script src="bower_components/angular/angular.js"> </script> |
可以看出,当我们需要引用的静态资源变得很多时,这个 list 也将会变得很长很不好管理。这时可以使用插件 gulp-inject。
1. 使用 bower 命令安装项目依赖包时添加--save-dev 参数,使配置写入 bower.json 文件。比如安装 angular 使用如下命令:
清单 13. 安装本地 angular 模块
1
|
$ bower install –-save-dev angular |
安装成功以后 bower.json 文件的 dependencies 中会自动生成 angular 的依赖关系。
清单 14.bower.json
1
2
3
|
"dependencies": { "angular": "^1.5.7" }, |
2. 在 index.html 中使用 inject 标签管理需要插入依赖包的位置。整理 index.html 成如下格式:
清单 15. 为 gulp-inject 准备的 index.html 模板
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE html> < html lang = "en" data-ng-app = "myApp" > < head > < meta charset = "utf-8" > < title >Angular UI Router</ title > <!-- bower:css --> <!-- endinject --> <!-- inject:css --> <!-- endinject --> </ head > < body > < a ui-sref = "note" >go note</ a > < div ui-view></ div > <!-- bower:js --> <!-- endinject --> <!-- inject:js --> <!-- endinject --> </ body > </ html > |
3. 配置 inject 的 task
清单 16.gulp 任务 inject
1
2
3
4
5
6
7
8
|
gulp.task('devIndex', ['clean', 'jshint'], function () { // It's not necessary to read the files (will speed up things), we're only after their paths: return gulp.src('./index.html') .pipe(inject(gulp.src(paths.js, {read: false}), {relative: true})) .pipe(inject(gulp.src(paths.css, {read: false}), {relative: true})) .pipe(inject(gulp.src(bowerFiles(), {read: false}), {name: 'bower', relative: true})) .pipe(gulp.dest('./')); }); |
4. 执行命令 gulp devIndex,我们可以得到注入以后的 index.html 如下:
清单 17.Inject 后生成的 index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<!DOCTYPE html> < html lang = "en" data-ng-app = "myApp" > < head > < meta charset = "utf-8" > < title >Angular UI Router</ title > <!-- bower:css --> < link rel = "stylesheet" href = "bower_components/normalize-css/normalize.css" > < link rel = "stylesheet" href = "bower_components/bootstrap/dist/css/bootstrap.min.css" > < link rel = "stylesheet" href = "bower_components/bootstrap/dist/css/bootstrap-theme.css" > <!-- endinject --> <!-- inject:css --> < link rel = "stylesheet" href = "style/main.css" > <!-- endinject --> </ head > < body > < a ui-sref = "note" >go note</ a > < div ui-view></ div > <!-- bower:js --> <script src="bower_components/angular/angular.js"> </script> <!-- endinject --> <!-- inject:js --> <script src="js/app.js"> </script> <script src="js/controllers/note.js"> </script> <script src="js/services/note.js"> </script> <!-- endinject --> </ body > </ html > |
task 7: deployIndex
deployIndex 主要是用来组织部署到测试或者生产环境时需要的 index.html。和 devIndex 的区别在于页面中引用的是合并压缩混淆后的静态资源,也就是项目目录 build 中的文件。此处同样也是使用的 gulp-inject,我们直接看一下 task。
清单 18. gulp 任务 deployIndex
1
2
3
4
5
6
7
8
|
gulp.task('deployIndex', ['clean', 'jshint', 'template', 'deployJS', 'deployCSS'], function () { // It's not necessary to read the files (will speed up things), we're only after their paths: return gulp.src('./index.html') .pipe(inject(gulp.src(paths.buildjs, {read: false}), {relative: true})) .pipe(inject(gulp.src(paths.buildcss, {read: false}), {relative: true})) .pipe(inject(gulp.src(bowerFiles(), {read: false}), {name: 'bower', relative: true})) .pipe(gulp.dest('./')); }); |
上面这段代码在配置 deployIndex 时使用了三个参数,其中第二个参数表示当前 task 所依赖的 task list。
示例项目介绍
文中使用的例子是一个基于 Angular.js 实现的网页版 Todo App,在 Github 中下载angular-quickstart。项目代码结构如下
清单 5. 项目目录结构
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
|--bower_components |--build |--node_modules |--static_pages |--js |--controllers |--services |--app.js // app 启动配置 |--style |--main.css |--view |--note.html |--gulpfile.js // gulp 配置 |--bower.json // bower 配置 |--package.json // node module 配置 |--index.html // app 启动文件 |
架构上使用如下 libs
- Angular:JavaScript 架构
- Bootstrap:样式控件库
- bower:管理项目依赖包
- npm:管理项目运行的依赖工具
- gulp:自动化构建工具
设计 build process
因为项目中使用到的 source code 有 JavaScript,,CSS,HTML 以及依赖 bower 导入的依赖包,所以我们将构建分成以下几个 task:
- jshint:编译 JavaScript
- clean:清空 build 目录
- template:合并并打包所有 HTML 模板文件生成 template.js
- js:压缩、混淆 JavaScript,并生成 sourcemap
- deployCSS:合并压缩 CSS
- devIndex:组织 develop 时的 index.html
- deployIndex:组织 deploy 时的 index.html,区别于第 6 个 task,这个 index.html 中 link 的将是压缩过的 CSS 和 JavaScript
接下来,我们分条介绍上面的 task。
设定全局变量 paths,记录 source code 的路径
清单 6. 项目 paths
1
2
3
4
5
6
7
|
var paths = { js: ['./js/app.js', 'js/**/*.js'], css: ['./style/**/*.css'], templates: './js/templates.js', buildjs: ['./build/**/*.js'], buildcss: ['./build/**/*.css'] }; |
task 1: jshint
这个 task 主要用来编译 JavaScript 代码。依赖插件 glup-jshint,需要在配置之前将这个插件安装好,之后如下配置:
清单 7. jshint
1
2
3
4
5
6
|
var jshint = require('gulp-jshint'); gulp.task('jshint', function() { gulp.src(paths.js) .pipe(jshint()) .pipe(jshint.reporter('default')); }); |
task 2: clean
我们可以看到项目目录中有个 build 文件夹,这个目录是用来存放所有 build 之后的 CSS/JS/HTML 文件。所以 clean 的任务是在每次 build 之前清理上一次 build 的 outputs,也就是清空 build 文件夹。依赖 del 模块:
清单 8. clean
1
2
3
4
5
|
var del = require('del'); gulp.task('clean', function() { // You can use multiple globbing patterns as you would with `gulp.src` return del(['./build', paths.templates]); }); |
task 3: template
开发过程中一般按照功能模块将页面分成不同的 HTML 片段模板,每个片段对应一个相应 controller,客户端浏览器访问网页时会分别请求下载 HTML 文件。当业务逻辑较为复杂时,项目中将会存在很多的 HTML 小文件,此时下载的请求数目也会很大,影响 performance。我们的想法是使用插件 gulp-angular-templatecache,将这些 HTML 模版片段合并成一个文件。这个插件会将所有模板文件合并成一个 template.js, 并将其作为项目中的一个 module 而存在。
清单 9. template
1
2
3
4
5
6
|
var templateCache = require('gulp-angular-templatecache'); gulp.task('template', function () { return gulp.src('./view/**/*.html') .pipe(templateCache({module: 'myApp'})) .pipe(gulp.dest('./js')) }); |
task 4: js
JavaScript 的 build 分成两种情况:
- DEV 模式:在开发环境中,为了方便 debug,JavaScript 通常不做压缩和混淆;
- PROD 模式:上生产环境时,JavaScript 必须并合压缩、混淆并成一个文件,同时需要去除所有的 log 输出语句。
JavaScript 混淆使用了插件 gulp-uglify;合并压缩使用了插件 gulp-concat,以及 gulp-sourcemaps;
去除 log 语句使用了插件 gulp-strip-debug。
清单 10. gulp 任务 js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
gulp.task('js', function() { if (deployEnvironment == Environment.DEV) { // DEV return gulp.src(paths.js) .pipe(concat('all.js')) .pipe(gulp.dest('./build')); } else { // PROD return gulp.src(paths.js) .pipe(sourcemaps.init()) .pipe(stripDebug()) .pipe(uglify()) .pipe(concat('all.min.js')) .pipe(sourcemaps.write()) .pipe(gulp.dest('./build')); } }); |
task 5: css
文中示例的样式表使用的是原生的 CSS 文件,所以使用 cssmin 完成了所有 CSS 文件的合并及压缩。
清单 11. gulp 任务 css
1
2
3
4
5
6
7
|
var cssmin = require('gulp-cssmin'); gulp.task('deployCSS', function() { return gulp.src(paths.css) .pipe(cssmin()) .pipe(concat('all.css')) .pipe(gulp.dest('./build')); }); |
task 6: devIndex
这个 task 主要是管理开发使用的 index.html 文件中对静态资源的引用。因为我们使用了 bower 来管理项目的依赖包,比如 jQuery 和 Angular,我们使用下面这种方式来导入项目:
清单 12. 引用静态资源
1
2
|
<script src="bower_components/jquery/dist/jquery.js"> </script> <script src="bower_components/angular/angular.js"> </script> |
可以看出,当我们需要引用的静态资源变得很多时,这个 list 也将会变得很长很不好管理。这时可以使用插件 gulp-inject。
1. 使用 bower 命令安装项目依赖包时添加--save-dev 参数,使配置写入 bower.json 文件。比如安装 angular 使用如下命令:
清单 13. 安装本地 angular 模块
1
|
$ bower install –-save-dev angular |
安装成功以后 bower.json 文件的 dependencies 中会自动生成 angular 的依赖关系。
清单 14.bower.json
1
2
3
|
"dependencies": { "angular": "^1.5.7" }, |
2. 在 index.html 中使用 inject 标签管理需要插入依赖包的位置。整理 index.html 成如下格式:
清单 15. 为 gulp-inject 准备的 index.html 模板
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE html> < html lang = "en" data-ng-app = "myApp" > < head > < meta charset = "utf-8" > < title >Angular UI Router</ title > <!-- bower:css --> <!-- endinject --> <!-- inject:css --> <!-- endinject --> </ head > < body > < a ui-sref = "note" >go note</ a > < div ui-view></ div > <!-- bower:js --> <!-- endinject --> <!-- inject:js --> <!-- endinject --> </ body > </ html > |
3. 配置 inject 的 task
清单 16.gulp 任务 inject
1
2
3
4
5
6
7
8
|
gulp.task('devIndex', ['clean', 'jshint'], function () { // It's not necessary to read the files (will speed up things), we're only after their paths: return gulp.src('./index.html') .pipe(inject(gulp.src(paths.js, {read: false}), {relative: true})) .pipe(inject(gulp.src(paths.css, {read: false}), {relative: true})) .pipe(inject(gulp.src(bowerFiles(), {read: false}), {name: 'bower', relative: true})) .pipe(gulp.dest('./')); }); |
4. 执行命令 gulp devIndex,我们可以得到注入以后的 index.html 如下:
清单 17.Inject 后生成的 index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<!DOCTYPE html> < html lang = "en" data-ng-app = "myApp" > < head > < meta charset = "utf-8" > < title >Angular UI Router</ title > <!-- bower:css --> < link rel = "stylesheet" href = "bower_components/normalize-css/normalize.css" > < link rel = "stylesheet" href = "bower_components/bootstrap/dist/css/bootstrap.min.css" > < link rel = "stylesheet" href = "bower_components/bootstrap/dist/css/bootstrap-theme.css" > <!-- endinject --> <!-- inject:css --> < link rel = "stylesheet" href = "style/main.css" > <!-- endinject --> </ head > < body > < a ui-sref = "note" >go note</ a > < div ui-view></ div > <!-- bower:js --> <script src="bower_components/angular/angular.js"> </script> <!-- endinject --> <!-- inject:js --> <script src="js/app.js"> </script> <script src="js/controllers/note.js"> </script> <script src="js/services/note.js"> </script> <!-- endinject --> </ body > </ html > |
task 7: deployIndex
deployIndex 主要是用来组织部署到测试或者生产环境时需要的 index.html。和 devIndex 的区别在于页面中引用的是合并压缩混淆后的静态资源,也就是项目目录 build 中的文件。此处同样也是使用的 gulp-inject,我们直接看一下 task。
清单 18. gulp 任务 deployIndex
1
2
3
4
5
6
7
8
|
gulp.task('deployIndex', ['clean', 'jshint', 'template', 'deployJS', 'deployCSS'], function () { // It's not necessary to read the files (will speed up things), we're only after their paths: return gulp.src('./index.html') .pipe(inject(gulp.src(paths.buildjs, {read: false}), {relative: true})) .pipe(inject(gulp.src(paths.buildcss, {read: false}), {relative: true})) .pipe(inject(gulp.src(bowerFiles(), {read: false}), {name: 'bower', relative: true})) .pipe(gulp.dest('./')); }); |
上面这段代码在配置 deployIndex 时使用了三个参数,其中第二个参数表示当前 task 所依赖的 task list。
调用 gulp deployIndex,生成的 index.html 和上一个 task 类似,不过 CSS 和 JS 的引用会修改如下:
清单 19. Inject 之后生成的 index.html
1
2
3
4
5
6
|
<!-- inject:css --> < link rel = "stylesheet" href = "build/all.css" > <!-- endinject --> <!-- inject:js --> <script src="build/all.min.js"> </script> <!-- endinject --> |
结束语
随着"前后端分离"架构的日渐普及,前台的自动化构建将越来越被重视。本文着重介绍了 gulp 的使用方式,以及 Web 前台开发过程中涉及的一些自动化构建切入点,希望读者可以通过本文了解 Web 前台的自动化构建相关知识。
调用 gulp deployIndex,生成的 index.html 和上一个 task 类似,不过 CSS 和 JS 的引用会修改如下:
清单 19. Inject 之后生成的 index.html
1
2
3
4
5
6
|
<!-- inject:css --> < link rel = "stylesheet" href = "build/all.css" > <!-- endinject --> <!-- inject:js --> <script src="build/all.min.js"> </script> <!-- endinject --> |
结束语
随着"前后端分离"架构的日渐普及,前台的自动化构建将越来越被重视。本文着重介绍了 gulp 的使用方式,以及 Web 前台开发过程中涉及的一些自动化构建切入点,希望读者可以通过本文了解 Web 前台的自动化构建相关知识。
示例项目介绍
文中使用的例子是一个基于 Angular.js 实现的网页版 Todo App,在 Github 中下载angular-quickstart。项目代码结构如下
清单 5. 项目目录结构
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
|--bower_components |--build |--node_modules |--static_pages |--js |--controllers |--services |--app.js // app 启动配置 |--style |--main.css |--view |--note.html |--gulpfile.js // gulp 配置 |--bower.json // bower 配置 |--package.json // node module 配置 |--index.html // app 启动文件 |
架构上使用如下 libs
- Angular:JavaScript 架构
- Bootstrap:样式控件库
- bower:管理项目依赖包
- npm:管理项目运行的依赖工具
- gulp:自动化构建工具
设计 build process
因为项目中使用到的 source code 有 JavaScript,,CSS,HTML 以及依赖 bower 导入的依赖包,所以我们将构建分成以下几个 task:
- jshint:编译 JavaScript
- clean:清空 build 目录
- template:合并并打包所有 HTML 模板文件生成 template.js
- js:压缩、混淆 JavaScript,并生成 sourcemap
- deployCSS:合并压缩 CSS
- devIndex:组织 develop 时的 index.html
- deployIndex:组织 deploy 时的 index.html,区别于第 6 个 task,这个 index.html 中 link 的将是压缩过的 CSS 和 JavaScript
接下来,我们分条介绍上面的 task。
设定全局变量 paths,记录 source code 的路径
清单 6. 项目 paths
1
2
3
4
5
6
7
|
var paths = { js: ['./js/app.js', 'js/**/*.js'], css: ['./style/**/*.css'], templates: './js/templates.js', buildjs: ['./build/**/*.js'], buildcss: ['./build/**/*.css'] }; |
task 1: jshint
这个 task 主要用来编译 JavaScript 代码。依赖插件 glup-jshint,需要在配置之前将这个插件安装好,之后如下配置:
清单 7. jshint
1
2
3
4
5
6
|
var jshint = require('gulp-jshint'); gulp.task('jshint', function() { gulp.src(paths.js) .pipe(jshint()) .pipe(jshint.reporter('default')); }); |
task 2: clean
我们可以看到项目目录中有个 build 文件夹,这个目录是用来存放所有 build 之后的 CSS/JS/HTML 文件。所以 clean 的任务是在每次 build 之前清理上一次 build 的 outputs,也就是清空 build 文件夹。依赖 del 模块:
清单 8. clean
1
2
3
4
5
|
var del = require('del'); gulp.task('clean', function() { // You can use multiple globbing patterns as you would with `gulp.src` return del(['./build', paths.templates]); }); |
task 3: template
开发过程中一般按照功能模块将页面分成不同的 HTML 片段模板,每个片段对应一个相应 controller,客户端浏览器访问网页时会分别请求下载 HTML 文件。当业务逻辑较为复杂时,项目中将会存在很多的 HTML 小文件,此时下载的请求数目也会很大,影响 performance。我们的想法是使用插件 gulp-angular-templatecache,将这些 HTML 模版片段合并成一个文件。这个插件会将所有模板文件合并成一个 template.js, 并将其作为项目中的一个 module 而存在。
清单 9. template
1
2
3
4
5
6
|
var templateCache = require('gulp-angular-templatecache'); gulp.task('template', function () { return gulp.src('./view/**/*.html') .pipe(templateCache({module: 'myApp'})) .pipe(gulp.dest('./js')) }); |
task 4: js
JavaScript 的 build 分成两种情况:
- DEV 模式:在开发环境中,为了方便 debug,JavaScript 通常不做压缩和混淆;
- PROD 模式:上生产环境时,JavaScript 必须并合压缩、混淆并成一个文件,同时需要去除所有的 log 输出语句。
JavaScript 混淆使用了插件 gulp-uglify;合并压缩使用了插件 gulp-concat,以及 gulp-sourcemaps;
去除 log 语句使用了插件 gulp-strip-debug。
清单 10. gulp 任务 js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
gulp.task('js', function() { if (deployEnvironment == Environment.DEV) { // DEV return gulp.src(paths.js) .pipe(concat('all.js')) .pipe(gulp.dest('./build')); } else { // PROD return gulp.src(paths.js) .pipe(sourcemaps.init()) .pipe(stripDebug()) .pipe(uglify()) .pipe(concat('all.min.js')) .pipe(sourcemaps.write()) .pipe(gulp.dest('./build')); } }); |
task 5: css
文中示例的样式表使用的是原生的 CSS 文件,所以使用 cssmin 完成了所有 CSS 文件的合并及压缩。
清单 11. gulp 任务 css
1
2
3
4
5
6
7
|
var cssmin = require('gulp-cssmin'); gulp.task('deployCSS', function() { return gulp.src(paths.css) .pipe(cssmin()) .pipe(concat('all.css')) .pipe(gulp.dest('./build')); }); |
task 6: devIndex
这个 task 主要是管理开发使用的 index.html 文件中对静态资源的引用。因为我们使用了 bower 来管理项目的依赖包,比如 jQuery 和 Angular,我们使用下面这种方式来导入项目:
清单 12. 引用静态资源
1
2
|
<script src="bower_components/jquery/dist/jquery.js"> </script> <script src="bower_components/angular/angular.js"> </script> |
可以看出,当我们需要引用的静态资源变得很多时,这个 list 也将会变得很长很不好管理。这时可以使用插件 gulp-inject。
1. 使用 bower 命令安装项目依赖包时添加--save-dev 参数,使配置写入 bower.json 文件。比如安装 angular 使用如下命令:
清单 13. 安装本地 angular 模块
1
|
$ bower install –-save-dev angular |
安装成功以后 bower.json 文件的 dependencies 中会自动生成 angular 的依赖关系。
清单 14.bower.json
1
2
3
|
"dependencies": { "angular": "^1.5.7" }, |
2. 在 index.html 中使用 inject 标签管理需要插入依赖包的位置。整理 index.html 成如下格式:
清单 15. 为 gulp-inject 准备的 index.html 模板
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE html> < html lang = "en" data-ng-app = "myApp" > < head > < meta charset = "utf-8" > < title >Angular UI Router</ title > <!-- bower:css --> <!-- endinject --> <!-- inject:css --> <!-- endinject --> </ head > < body > < a ui-sref = "note" >go note</ a > < div ui-view></ div > <!-- bower:js --> <!-- endinject --> <!-- inject:js --> <!-- endinject --> </ body > </ html > |
3. 配置 inject 的 task
清单 16.gulp 任务 inject
1
2
3
4
5
6
7
8
|
gulp.task('devIndex', ['clean', 'jshint'], function () { // It's not necessary to read the files (will speed up things), we're only after their paths: return gulp.src('./index.html') .pipe(inject(gulp.src(paths.js, {read: false}), {relative: true})) .pipe(inject(gulp.src(paths.css, {read: false}), {relative: true})) .pipe(inject(gulp.src(bowerFiles(), {read: false}), {name: 'bower', relative: true})) .pipe(gulp.dest('./')); }); |
4. 执行命令 gulp devIndex,我们可以得到注入以后的 index.html 如下:
清单 17.Inject 后生成的 index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<!DOCTYPE html> < html lang = "en" data-ng-app = "myApp" > < head > < meta charset = "utf-8" > < title >Angular UI Router</ title > <!-- bower:css --> < link rel = "stylesheet" href = "bower_components/normalize-css/normalize.css" > < link rel = "stylesheet" href = "bower_components/bootstrap/dist/css/bootstrap.min.css" > < link rel = "stylesheet" href = "bower_components/bootstrap/dist/css/bootstrap-theme.css" > <!-- endinject --> <!-- inject:css --> < link rel = "stylesheet" href = "style/main.css" > <!-- endinject --> </ head > < body > < a ui-sref = "note" >go note</ a > < div ui-view></ div > <!-- bower:js --> <script src="bower_components/angular/angular.js"> </script> <!-- endinject --> <!-- inject:js --> <script src="js/app.js"> </script> <script src="js/controllers/note.js"> </script> <script src="js/services/note.js"> </script> <!-- endinject --> </ body > </ html > |
task 7: deployIndex
deployIndex 主要是用来组织部署到测试或者生产环境时需要的 index.html。和 devIndex 的区别在于页面中引用的是合并压缩混淆后的静态资源,也就是项目目录 build 中的文件。此处同样也是使用的 gulp-inject,我们直接看一下 task。
清单 18. gulp 任务 deployIndex
1
2
3
4
5
6
7
8
|
gulp.task('deployIndex', ['clean', 'jshint', 'template', 'deployJS', 'deployCSS'], function () { // It's not necessary to read the files (will speed up things), we're only after their paths: return gulp.src('./index.html') .pipe(inject(gulp.src(paths.buildjs, {read: false}), {relative: true})) .pipe(inject(gulp.src(paths.buildcss, {read: false}), {relative: true})) .pipe(inject(gulp.src(bowerFiles(), {read: false}), {name: 'bower', relative: true})) .pipe(gulp.dest('./')); }); |
上面这段代码在配置 deployIndex 时使用了三个参数,其中第二个参数表示当前 task 所依赖的 task list。
调用 gulp deployIndex,生成的 index.html 和上一个 task 类似,不过 CSS 和 JS 的引用会修改如下:
清单 19. Inject 之后生成的 index.html
1
2
3
4
5
6
|
<!-- inject:css --> < link rel = "stylesheet" href = "build/all.css" > <!-- endinject --> <!-- inject:js --> <script src="build/all.min.js"> </script> <!-- endinject --> |
结束语
随着"前后端分离"架构的日渐普及,前台的自动化构建将越来越被重视。本文着重介绍了 gulp 的使用方式,以及 Web 前台开发过程中涉及的一些自动化构建切入点,希望读者可以通过本文了解 Web 前台的自动化构建相关知识。
gulp + angularjs的更多相关文章
- 记项目中ES6+gulp+angularjs里的问题
AngualrJs中可用来注入的有三种类型,service.factory.provider,这三种写法不样,用法也都不一样.其中,service只实例化一次,其实就是单例模式的思想.无论我们在什么地 ...
- gulp 在 angular 项目中的使用
gulp 在 angular 项目中的使用 keyword:gulp,angularjs,ng,ngAnnotate,jshint,gulpfile 最后附完整简洁的ng项目gulpfile.js 准 ...
- 新建一个angularjs+requirejs+bootstrap+typescript+gulp+vscode+git的项目
环境 windows 10 准备工具 Visual Studio Code Node.js Git 需求 必须支持IE8 步骤开始: 执行命令行工具 mkdir Demo && cd ...
- angularjs, nodejs, express, gulp, karma, jasmine 前端方案整合
今年转向做前端开发,主要是做angularjs开发,期间接触了nodejs平台,从此一发不可收拾. npm丰富的插件库,express 开发框架, grunt, gulp构建工具,karma测试管理工 ...
- Angularjs E2E test Report/CoverageReport - 使用Gulp
上一篇(http://www.cnblogs.com/xiaoningz/p/7122633.html)使用grunt-protractor-coverage 做为覆盖率测试插件,如果项目的管理工具刚 ...
- 前端自动化工具 -- gulp https://angularjs.org/
gulp是基于流的前端自动化构建工具. gulp是基于stream流的形式,也就是前一个函数(工厂)制造出结果,提供后者使用. 同样的,也是包括基本用法和各插件的使用. 二.基本用法--插件使用 gu ...
- 基于AngularJS的个推前端云组件探秘
基于AngularJS的个推前端云组件探秘 AngularJS是google设计和开发的一套前端开发框架,帮助开发人员简化前端开发的负担.AngularJS将帮助标准化的开发web应用结构并且提供了针 ...
- 基于AngularJS的企业软件前端架构[转载]
这篇是我参加QCon北京2014的演讲内容: 提纲: 企业应用在软件行业中占有很大的比重,而这类软件多数现在也都采用B/S的模式开发,在这个日新月异的时代,它们的前端开发技术找到了什么改进点呢? B/ ...
- 如何在 ASP.NET MVC 中集成 AngularJS(3)
今天来为大家介绍如何在 ASP.NET MVC 中集成 AngularJS 的最后一部分内容. 调试路由表 - HTML 缓存清除 就在我以为示例应用程序完成之后,我意识到,我必须提供两个版本的路由表 ...
随机推荐
- 滴滴开源AgileTC:敏捷测试用例管理平台
桔妹导读:AgileTC是一套敏捷的测试用例管理平台,支持测试用例管理.执行计划管理.进度计算.多人实时协同等能力,方便测试人员对用例进行管理和沉淀.产品以脑图方式编辑可快速上手,用例关联需求形成流 ...
- 面试官:一个 TCP 连接可以发多少个 HTTP 请求?
曾经有这么一道面试题:从 URL 在浏览器被被输入到页面展现的过程中发生了什么? 相信大多数准备过的同学都能回答出来,但是如果继续问:收到的 HTML 如果包含几十个图片标签,这些图片是以什么方式 ...
- dubbo学习(九)dubbo监控中心
安装与配置 下载地址:https://github.com/apache/dubbo-admin/tree/master(包含管理控制台和监控中心) PS: 下载前要选择master分支以后再进行下 ...
- python ---倒酒!!
#!/usr/bin/env python3# -*- coding: utf-8 -*-import numbersimport numpyimport math'''三个容器分别为12升.8升.5 ...
- mysql及联合查询
SQL语句分类 DDL 数据库定义语言 定义数据库对象 create alter truncate drop TPL 事务处理语言 rollback commit DCL 数据控制语言 由 GRANT ...
- BUU reverse xxor
下载下来的是个elf文件,因为懒得上Linux,直接往IDA里扔, 切到字符串的那个窗口,发现Congratulation!,应该是程序成功执行的表示, 双击,按'x',回车跟入 找到主函数: 1 _ ...
- python数据结构实现(栈和链栈)
栈 class Stack: def __init__(self, limit: int 10): self.stack = [] self.limit = limit def __bool__(se ...
- nginx 1.12 HTTPS双向认证配置
使用openssl生成相关证书: #生成CA私钥,私钥会被加密,需要设置密码 openssl genrsa -aes256 -out ca.key 2048 #生成CA证书签名请求,需要输入CA私钥密 ...
- Go-变量-var
什么是变量? 一种抽象,计算机用来保存现实数据的容器,通过这个变量抽象可以写入现实数据到计算机中,并且可以读取变量取到保存到计算机中的现实数字化数据 Go-变量定义 关键字 var 关键符号 := i ...
- Android作业0930
1.使用ListView和Adapter实现购物商城 Android 布局文件 <?xml version="1.0" encoding="utf-8"? ...