从零开始Grunt

[20141025]从0开始Grunt

*:first-child {
margin-top: 0 !important;
}

body>*:last-child {
margin-bottom: 0 !important;
}

/* BLOCKS
=============================================================================*/

p, blockquote, ul, ol, dl, table, pre {
margin: 15px 0;
}

/* HEADERS
=============================================================================*/

h1, h2, h3, h4, h5, h6 {
margin: 20px 0 10px;
padding: 0;
font-weight: bold;
-webkit-font-smoothing: antialiased;
}

h1 tt, h1 code, h2 tt, h2 code, h3 tt, h3 code, h4 tt, h4 code, h5 tt, h5 code, h6 tt, h6 code {
font-size: inherit;
}

h1 {
font-size: 28px;
color: #000;
}

h2 {
font-size: 24px;
border-bottom: 1px solid #ccc;
color: #000;
}

h3 {
font-size: 18px;
}

h4 {
font-size: 16px;
}

h5 {
font-size: 14px;
}

h6 {
color: #777;
font-size: 14px;
}

body>h2:first-child, body>h1:first-child, body>h1:first-child+h2, body>h3:first-child, body>h4:first-child, body>h5:first-child, body>h6:first-child {
margin-top: 0;
padding-top: 0;
}

a:first-child h1, a:first-child h2, a:first-child h3, a:first-child h4, a:first-child h5, a:first-child h6 {
margin-top: 0;
padding-top: 0;
}

h1+p, h2+p, h3+p, h4+p, h5+p, h6+p {
margin-top: 10px;
}

/* LINKS
=============================================================================*/

a {
color: #4183C4;
text-decoration: none;
}

a:hover {
text-decoration: underline;
}

/* LISTS
=============================================================================*/

ul, ol {
padding-left: 30px;
}

ul li > :first-child,
ol li > :first-child,
ul li ul:first-of-type,
ol li ol:first-of-type,
ul li ol:first-of-type,
ol li ul:first-of-type {
margin-top: 0px;
}

ul ul, ul ol, ol ol, ol ul {
margin-bottom: 0;
}

dl {
padding: 0;
}

dl dt {
font-size: 14px;
font-weight: bold;
font-style: italic;
padding: 0;
margin: 15px 0 5px;
}

dl dt:first-child {
padding: 0;
}

dl dt>:first-child {
margin-top: 0px;
}

dl dt>:last-child {
margin-bottom: 0px;
}

dl dd {
margin: 0 0 15px;
padding: 0 15px;
}

dl dd>:first-child {
margin-top: 0px;
}

dl dd>:last-child {
margin-bottom: 0px;
}

/* CODE
=============================================================================*/

pre, code, tt {
font-size: 12px;
font-family: Consolas, "Liberation Mono", Courier, monospace;
}

code, tt {
margin: 0 0px;
padding: 0px 0px;
white-space: nowrap;
border: 1px solid #eaeaea;
background-color: #f8f8f8;
border-radius: 3px;
}

pre>code {
margin: 0;
padding: 0;
white-space: pre;
border: none;
background: transparent;
}

pre {
background-color: #f8f8f8;
border: 1px solid #ccc;
font-size: 13px;
line-height: 19px;
overflow: auto;
padding: 6px 10px;
border-radius: 3px;
}

pre code, pre tt {
background-color: transparent;
border: none;
}

kbd {
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
background-color: #DDDDDD;
background-image: linear-gradient(#F1F1F1, #DDDDDD);
background-repeat: repeat-x;
border-color: #DDDDDD #CCCCCC #CCCCCC #DDDDDD;
border-image: none;
border-radius: 2px 2px 2px 2px;
border-style: solid;
border-width: 1px;
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
line-height: 10px;
padding: 1px 4px;
}

/* QUOTES
=============================================================================*/

blockquote {
border-left: 4px solid #DDD;
padding: 0 15px;
color: #777;
}

blockquote>:first-child {
margin-top: 0px;
}

blockquote>:last-child {
margin-bottom: 0px;
}

/* HORIZONTAL RULES
=============================================================================*/

hr {
clear: both;
margin: 15px 0;
height: 0px;
overflow: hidden;
border: none;
background: transparent;
border-bottom: 4px solid #ddd;
padding: 0;
}

/* IMAGES
=============================================================================*/

img {
max-width: 100%
}
-->

首先,Grunt是什么?

Grunt是JavaScript任务运行工具。使用它可以自动化诸如文件(夹)操作、代码压缩、代码编译、单元测试、代码规范校验等等重复的任务。

如何安装Grunt?(Windows)

Step1、Grunt依赖Node扩展包,那么必须要安装Node:

  1. 打开Node官网:http://nodejs.org/
  2. 点击 INSTALL 按钮,会自动适配环境,下载一个安装包,双击安装即可
  3. 打开cmd命令行,输入命令代码: node -v ,如果输出一个具体的版本号,如 v0.10.xx ,则表示安装成功。

Step2、安装grunt的命令行工具: 1. 打开cmd命令行,输入命令代码:npm install -g grunt-cli ,该命令表示全局安装grunt的命令行

到此,Grunt算是安装完成。

如何使用?(以一个SPA为例)

首先,创建该项目SPADemo,目录结构如下:

SPADemo
    src
        images     //图片文件夹
        styles     //样式表文件夹
        scripts    //脚本文件夹
            vendor //存放第三方组件
        index.html //默认页

第二步,书写package.json 文件,确定依赖项。放在src同级目录,内容如下:

{
  "name": "SPADemo",
  "version": "0.1.0",
  "devDependencies": {
    "grunt": "~0.4.2"
  }
}

第三步,打开SPADemo根文件夹,在路径栏输入cmd,进入当前目录的cmd模式,输入 npm i ,初始化依赖项。当更该package.json后,可重复执行该命令。将依赖项重新初始化。会生成一个node_modules文件夹。

第四步,进行Grunt配置。默认配置文件名为Gruntfile.js(.coffee也可以,但是Gruntfile不能更改,同时必须放在src同级目录)

第五步,配置Gruntfile.js/coffee

module.exports = function(grunt){
    //初始化Grunt
    grunt.initConfig({});

    // registerTask(taskName,taskDescription,taskFunc/childTaskArray)
    grunt.registerTask(‘default‘,‘任务入口‘,function(){
        grunt.log.write(‘任务已启动!‘);
    });
};

到现在,一个Grunt已经完整配置好了。进入SPADemo目录的cmd命令行,输入grunt,会显示“任务已启动!”

如何使用插件?

文件清理插件 grunt-contrib-clean

该插件用于清除目录/文件

首先在package.json中添加该依赖包。变化后配置如下:

{
  "name": "SPADemo",
  "version": "0.1.0",
  "devDependencies": {
    "grunt": "~0.4.2",
    "grunt-contrib-clean": "~0.6.0"
  }
}

然后在Gruntfile.js中增加该插件的配置,代码如下(更详细的配置请参考插件地址):

module.exports = function(grunt){
    grunt.initConfig({
        //clean插件的配置项,名字不能变化。
        //插件地址:https://github.com/gruntjs/grunt-contrib-clean
        clean: {
            //任务具体配置,清除dist文件夹
            cleanDist: {
                force: true, //允许操作当前工作目录之外的目录
                src: ‘dist/**/*‘ //dist下的所有文件和目录
            }
        }
    });

    grunt.loadNpmTasks(‘grunt-contrib-clean‘);// 必须,使用clean插件,必须要调用该方法,加载插件

    // registerTask(taskName,taskDescription,taskFunc/childTaskArray)
    grunt.registerTask(‘default‘,‘任务入口‘,function(){
        grunt.log.write(‘任务已启动!‘);
        grunt.task.run([
            ‘clean:cleanDist‘ //使用clean任务的cleanDist配置运行任务
        ]);
    });
};

最后cmd运行grunt命令,就可以执行对dist目录的清理了。可以手动新建dist文件夹测试。

写在最后

Grunt是一个庞大的生态系统,我们可以自由的选择数以百计的插件来帮助处理自动化任务。同时,如果发现没有合适的插件,我们还可以自己创建插件并通过npm发布,以供更多人使用和完善。

时间: 2024-10-08 20:56:03

从零开始Grunt的相关文章

使用 grunt 实现页面自动刷新

1.这里就不陈述 Grunt 是什么这些理论了,自行搜索哈,当然要安装的东西还是要先声明一下, 首先我们先下载安装NodeJs -> Git(下载npm)->  npm  ->  Grunt .这里一个过程就不陈述了,自己自行搜索便能安装搭建. 2.假设我们这些都已经安装好了,那么我们就从零开始搭建一个项目来测试一下(完整的目录如下) 我们简要说一下每个文件搭建与内容 1.创建一个GruntItem 空文件文件(里面包含下面文件); 2.创建一个package.json -> 我们

Grunt + Bower + Requirejs + Angular

http://www.tuicool.com/articles/ENbI7j3 时间 2014-07-27 22:08:46  Freewind.me原文  http://freewind.me/blog/20140727/2739.html 现在web开发的趋势是前后端分离.前端采用某些js框架,后端采用某些语言提供restful API,两者以json格式进行数据交互. 如果后端采用node.js,则前后端可以使用同一种语言,共享某些可重用的Js代码,并共享构建工具.但很多时候我们可能采用别

前端开发环境搭建 Grunt Bower、Requirejs 、 Angular

现在web开发的趋势是前后端分离.前端采用某些js框架,后端采用某些语言提供restful API,两者以json格式进行数据交互. 如果后端采用node.js,则前后端可以使用同一种语言,共享某些可重用的Js代码,并共享构建工具.但很多时候我们可能采用别的语言,如ruby/java/scala等,此时前后端代码基本上是完全独立的.虽然大家都在同一个项目中,但可以分成互相独立的两块,并且前后端通常使用不同的构建工具. 比如当后端使用Scala时,我们会使用sbt进行项目构建,对scala代码进行

前端开发环境搭建 grunt bower、requirejs 、 anjular

现在web开发的趋势是前后端分离.前端采用某些js框架,后端采用某些语言提供restful API,两者以json格式进行数据交互. 如果后端采用node.js,则前后端可以使用同一种语言,共享某些可重用的Js代码,并共享构建工具.但很多时候我们可能采用别的语言,如ruby/java/scala等,此时前后端代码基本上是完全独立的.虽然大家都在同一个项目中,但可以分成互相独立的两块,并且前后端通常使用不同的构建工具. 比如当后端使用Scala时,我们会使用sbt进行项目构建,对scala代码进行

iOS block从零开始

iOS block从零开始 在iOS4.0之后,block横空出世,它本身封装了一段代码并将这段代码当做变量,通过block()的方式进行回调. block的结构 先来一段简单的代码看看: void (^myBlock)(int a) = ^(int a){ NSLog(@"%zd",a); }; NSLog(@"旭宝爱吃鱼"); myBlock(999); 输出结果: 2016-05-03 11:27:18.571 block[5340:706252] 旭宝爱吃鱼

grunt 入门学习

前端工作流,Grunt上手指南 Posted@2013-04-20 7:15 a.m. CategoriesGrunt ,  javascript 我想先花点时间回忆一下作为一个前端需要做的工作(Loading...) JS合并 JS压缩 CSS压缩 CSS Sprite 图片优化 测试 静态资源缓存(版本更新) ... 对应的,一个全副武装的前端可能会是这样的: JSHint CSSLint Jade CoffeeScript RequireJS/SeaJS Compass/Stylus/Le

grunt使用心得

这是我在使用前端构建工具grunt的一些总结,希望对大家有一定的帮助,也希望大家一起讨论一起进步. http://cobish.github.io/%E5%89%8D%E7%AB%AF/2015/06/28/grunt-use.html

Grunt的wiredep任务的配置说明文档

Automatically inject Bower components into the HTML file 自动把Bower的组件注入到HTML文件中 如果我们通过以下方式安装组件 bower install jquery --save bower install sea.js --save 安装后会在bower.json文件中看到 { "name": "framework-demo", "private": true, "dep

grunt之easy demo

首先安装grunt-cli cnpm install -g grunt-cli 接下来创建package.json,内容如下 {        "name": "demo",        "file": "zepto",        "version": "0.1.0",        "description": "demo",