let grunt do the work, focus on the fun!

64
Let Grunt do the work, focus on the fun! Dirk Ginader, Google, 2013 1

Upload: dirk-ginader

Post on 27-Jan-2015

114 views

Category:

Technology


0 download

DESCRIPTION

Introduction to Grunt, the Javascript Task Runner HTML5 Developer Conference 2013

TRANSCRIPT

Page 1: Let Grunt do the work, focus on the fun!

Let Grunt do the work, focus on the fun!

Dirk Ginader, Google, 2013

1

Page 2: Let Grunt do the work, focus on the fun!

Let Grunt do the endlessly repetitive tedious tasks, focus

on the important stuff!Dirk Ginader, Google, 2013

2

Page 3: Let Grunt do the work, focus on the fun!

Let Grunt do the work, focus on the fun!

Dirk Ginader, Google, 2013

3

Page 4: Let Grunt do the work, focus on the fun!

Why Build scripts?

4

Page 5: Let Grunt do the work, focus on the fun!

Because great Developers

are lazy.

5

Page 6: Let Grunt do the work, focus on the fun!

Because great Developers

are lazy. FACT.

6

Page 7: Let Grunt do the work, focus on the fun!

timespent

task sizenon-geekgeek does it manually

makes fun of geek’scomplicated method

loses

does it manually

gets annoyed

writes scriptto automate

runs script

wins

7

Page 8: Let Grunt do the work, focus on the fun!

Build systems have been around for ages

• Make

• Maven

• and so many more ...

• Ant

• Rake

8

Page 9: Let Grunt do the work, focus on the fun!

They’re all great and powerful and all...

9

Page 10: Let Grunt do the work, focus on the fun!

Minify with Ant<target name="js-compile-all" description="Compile JavaScript files with Closure" unless="skip-js-compile"> <echo>Compiling JS files in ${input.scripts.dir} in closure...</echo> <apply executable="java" dest="${output.scripts.dir}"> <arg value="-jar"/> <arg path="${jar.lib.dir}/closure-compiler.jar"/> <arg line="--js"/> <srcfile/> <arg line="--js_output_file"/> <targetfile/> <fileset dir="${output.scripts.dir}" includes="**/*-main.debug.js" /> <mapper type="glob" from="*-main.debug.js" to="*-main.min.js"/> </apply> <echo>Finished compiling JS files</echo></target>

http://mechanics.flite.com/blog/2012/06/19/why-we-use-node-dot-js-and-grunt-to-build-javascript/

10

Page 11: Let Grunt do the work, focus on the fun!

11

Page 12: Let Grunt do the work, focus on the fun!

How much I liked to configure with XML?

12

Page 13: Let Grunt do the work, focus on the fun!

13

Page 14: Let Grunt do the work, focus on the fun!

I’m a Front End Developer!

14

Page 15: Let Grunt do the work, focus on the fun!

I like Javascript

15

Page 16: Let Grunt do the work, focus on the fun!

I like LOVE Javascript

16

Page 17: Let Grunt do the work, focus on the fun!

17

Page 18: Let Grunt do the work, focus on the fun!

Just one year ago Ben Alman did me a

great favor:

18

Page 19: Let Grunt do the work, focus on the fun!

GRUNTThe JavaScript Task Runner

19

Page 20: Let Grunt do the work, focus on the fun!

20

Page 21: Let Grunt do the work, focus on the fun!

written in Javascript

21

Page 22: Let Grunt do the work, focus on the fun!

using the node package manager

22

Page 23: Let Grunt do the work, focus on the fun!

FAST adoption rate• jQuery

• Modernizr

• Adobe

• twitter

• ...

23

Page 24: Let Grunt do the work, focus on the fun!

because it’s easy!

24

Page 25: Let Grunt do the work, focus on the fun!

System Setup:

25

Page 26: Let Grunt do the work, focus on the fun!

download and install node.js from:

http://nodejs.org/

26

Page 27: Let Grunt do the work, focus on the fun!

$ npm install -g grunt-cli

27

Page 28: Let Grunt do the work, focus on the fun!

Project Setup:

28

Page 29: Let Grunt do the work, focus on the fun!

2 important Files:package.jsonGruntfile.js

29

Page 30: Let Grunt do the work, focus on the fun!

package.json

30

Page 31: Let Grunt do the work, focus on the fun!

{ "name": "jQuery-Accessible-Tabs", "version": "1.9.7", "homepage": "http://github.com/ginader/Accessible-Tabs", "author": { "name": "Dirk Ginader", "url": "http://ginader.com" }, "devDependencies": {

}}

https://npmjs.org/doc/json.html

31

Page 32: Let Grunt do the work, focus on the fun!

Gives you:

• Variables you can use in your scripti.e. version and name

• Dev Dependencies that allows you to quickly install all required npm modules

32

Page 33: Let Grunt do the work, focus on the fun!

{ "name": "jQuery-Accessible-Tabs", "version": "1.9.7", "homepage": "http://github.com/ginader/Accessible-Tabs", "author": { "name": "Dirk Ginader", "url": "http://ginader.com" }, "devDependencies": {

}}

https://npmjs.org/doc/json.html

33

Page 34: Let Grunt do the work, focus on the fun!

$ npm install grunt --save-dev

34

Page 35: Let Grunt do the work, focus on the fun!

{ "name": "jQuery-Accessible-Tabs", "version": "1.9.7", "homepage": "http://github.com/ginader/Accessible-Tabs", "author": { "name": "Dirk Ginader", "url": "http://ginader.com" }, "devDependencies": { "grunt": "~0.4.0" }}

https://npmjs.org/doc/json.html

35

Page 36: Let Grunt do the work, focus on the fun!

$ npm install

install all the defined Dependencies in one go

36

Page 37: Let Grunt do the work, focus on the fun!

Gruntfile.js

37

Page 38: Let Grunt do the work, focus on the fun!

Minify with Grunt

http://mechanics.flite.com/blog/2012/06/19/why-we-use-node-dot-js-and-grunt-to-build-javascript/

module.exports = function(grunt) { grunt.initConfig({ uglify: { dist: { src: 'dist/myfile.js', dest: 'dist/myfile.min.js' }, } }); grunt.loadNpmTasks('grunt-contrib-uglify'); grunt.registerTask('default', ['uglify']);};

38

Page 39: Let Grunt do the work, focus on the fun!

Minify with Ant<target name="js-compile-all" description="Compile JavaScript files with Closure" unless="skip-js-compile"> <echo>Compiling JS files in ${input.scripts.dir} in closure...</echo> <apply executable="java" dest="${output.scripts.dir}"> <arg value="-jar"/> <arg path="${jar.lib.dir}/closure-compiler.jar"/> <arg line="--js"/> <srcfile/> <arg line="--js_output_file"/> <targetfile/> <fileset dir="${output.scripts.dir}" includes="**/*-main.debug.js" /> <mapper type="glob" from="*-main.debug.js" to="*-main.min.js"/> </apply> <echo>Finished compiling JS files</echo></target>

http://mechanics.flite.com/blog/2012/06/19/why-we-use-node-dot-js-and-grunt-to-build-javascript/

39

Page 40: Let Grunt do the work, focus on the fun!

40

Page 41: Let Grunt do the work, focus on the fun!

Minify with Grunt

http://mechanics.flite.com/blog/2012/06/19/why-we-use-node-dot-js-and-grunt-to-build-javascript/

module.exports = function(grunt) { grunt.initConfig({ uglify: { dist: { src: 'dist/myfile.js', dest: 'dist/myfile.min.js' } } }); grunt.loadNpmTasks('grunt-contrib-uglify'); grunt.registerTask('default', ['uglify']);};

41

Page 42: Let Grunt do the work, focus on the fun!

Minify with Grunt

http://mechanics.flite.com/blog/2012/06/19/why-we-use-node-dot-js-and-grunt-to-build-javascript/

module.exports = function(grunt) { grunt.initConfig({ uglify: { dist: { src: 'dist/myfile.js', dest: 'dist/myfile.min.js' } } }); grunt.loadNpmTasks('grunt-contrib-uglify'); grunt.registerTask('default', ['uglify']);};

42

Page 43: Let Grunt do the work, focus on the fun!

Minify with Grunt

http://mechanics.flite.com/blog/2012/06/19/why-we-use-node-dot-js-and-grunt-to-build-javascript/

module.exports = function(grunt) { grunt.initConfig({ uglify: { dist: { src: 'dist/myfile.js', dest: 'dist/myfile.min.js' } } }); grunt.loadNpmTasks('grunt-contrib-uglify'); grunt.registerTask('default', ['uglify']);};

43

Page 44: Let Grunt do the work, focus on the fun!

44

Page 45: Let Grunt do the work, focus on the fun!

easy to add more$ npm i grunt-contrib-jshint --save-dev

45

Page 46: Let Grunt do the work, focus on the fun!

add JS Lintingmodule.exports = function(grunt) { grunt.initConfig({ jshint: { all: ['*.js'] }, uglify: { dist: { src: 'myfile.js', dest: 'myfile.min.js' } } }); grunt.loadNpmTasks('grunt-contrib-uglify'); grunt.loadNpmTasks('grunt-contrib-jshint'); grunt.registerTask('default', ['jshint','uglify']);};

46

Page 47: Let Grunt do the work, focus on the fun!

add data from package.jsonmodule.exports = function(grunt) { grunt.initConfig({ pkg: grunt.file.readJSON('package.json'), jshint: { all: ['*.js'] }, uglify: { options: { banner: '/*! <%= pkg.name %>' + ' <%= grunt.template.today("yyyy-mm-dd") %> */\n' }, dist: { src: 'myfile.js', dest: 'myfile.min.js' } } }); grunt.loadNpmTasks('grunt-contrib-uglify'); grunt.loadNpmTasks('grunt-contrib-jshint'); grunt.registerTask('default', ['jshint','uglify']);};

47

Page 48: Let Grunt do the work, focus on the fun!

add data from package.jsonmodule.exports = function(grunt) { grunt.initConfig({ pkg: grunt.file.readJSON('package.json'), jshint: { all: ['*.js'] }, uglify: { options: { banner: '/*! <%= pkg.name %>' + ' <%= grunt.template.today("yyyy-mm-dd") %> */\n' }, dist: { src: '<%= pkg.name %>.js', dest: '<%= pkg.name %>.min.js' } } }); grunt.loadNpmTasks('grunt-contrib-uglify'); grunt.loadNpmTasks('grunt-contrib-jshint'); grunt.registerTask('default', ['jshint','uglify']);};

48

Page 49: Let Grunt do the work, focus on the fun!

add data from package.jsonmodule.exports = function(grunt) { grunt.initConfig({ pkg: grunt.file.readJSON('package.json'), jshint: { all: ['*.js'] }, uglify: { options: { banner: '/*! <%= pkg.name %>' + ' <%= grunt.template.today("yyyy-mm-dd") %> */\n' }, dist: { src: '<%= pkg.name %>.js', dest: '<%= pkg.name %>.<%= pkg.version %>.min.js' } } }); grunt.loadNpmTasks('grunt-contrib-uglify'); grunt.loadNpmTasks('grunt-contrib-jshint'); grunt.registerTask('default', ['jshint','uglify']);};

49

Page 50: Let Grunt do the work, focus on the fun!

minify and combine CSS

cssmin: { compress: { options: { banner: '<%= banner %>' }, files: { 'project.min.css': ['1.css','2.css', '...'] } } }

grunt.loadNpmTasks('grunt-contrib-cssmin');

grunt.registerTask('default', ['jshint','uglify', 'cssmin']);

50

Page 51: Let Grunt do the work, focus on the fun!

optimize Imagesimagemin: { dist: { options: { optimizationLevel: 3 }, files: { // 'destination': 'source' 'dist/img.png': 'src/img.png', 'dist/img.jpg': 'src/img.jpg' } }}

grunt.registerTask('default', ['imagemin']);

51

Page 52: Let Grunt do the work, focus on the fun!

but it’s more than just optimizations

52

Page 53: Let Grunt do the work, focus on the fun!

render markdown to HTML

markdown: { all: { files: ['readme.markdown','version-history.markdown'], template: 'web/template.html', dest: 'web', options: { gfm: true, codeLines: { before: '<span>', after: '</span>' } } } }

53

Page 54: Let Grunt do the work, focus on the fun!

remove debug code

removelogging: { dist: { src: 'js/jquery.tabs.min.js', dest: 'js/jquery.tabs.min.js' } }

54

Page 55: Let Grunt do the work, focus on the fun!

compile Sass/Compass // setup Compass/Sass to load from existing config.rb compass: { dist: { options: { config: 'config.rb' } } }

55

Page 56: Let Grunt do the work, focus on the fun!

and Livereload!

56

Page 57: Let Grunt do the work, focus on the fun!

Scaffolding

57

Page 58: Let Grunt do the work, focus on the fun!

$ npm install -g grunt-init

58

Page 59: Let Grunt do the work, focus on the fun!

many templates for grunt-init

• Gruntfile

• Grunt plugin

• jQuery plugin

• node.js

• ...

59

Page 60: Let Grunt do the work, focus on the fun!

$ git clone git://github.com/gruntjs/grunt-init-jquery.git ~/.grunt-init/jquery

60

Page 61: Let Grunt do the work, focus on the fun!

$ grunt-init jquery

61

Page 62: Let Grunt do the work, focus on the fun!

62

Page 63: Let Grunt do the work, focus on the fun!

The opinions I expressed here represent my own and not necessarily those of my employer.

btw: We’re hiring! Talk to me :-)

Thank you! Questions?

63

Page 64: Let Grunt do the work, focus on the fun!

Resources

• Grunt: http://gruntjs.com/

• Great article: http://dir.kg/grunt.workflow

• Extending Grunt big time: http://yeoman.io

• Me: http://dir.kg/me

• @ginader on twitter

• the example projects: http://github.com/ginader/

• http://ginader.com

64