用 grunt-contrib-connect 构建实时预览开发环境 实时刷新

本文基本是参照着 用Grunt与livereload构建实时预览的开发环境 实操了一遍,直接实现能实时预览文件列表,内容页面。不用刷新页面了,这比以前开发网页程序都简单。

这里要用到的 Grunt 插件有

grunt-contrib-connect , 用来充当一个静态文件服务器,本身集成了 livereload 功能 
grunt-contrib-watch , 监视文件的改变,然后执行指定任务,这里用来刷新  grunt serve 打开的页面

以下是个辅助的插件

load-grunt-tasks , 省事的插件,有了这个可以不用写一堆的 grunt.loadNpmTasks('xxx') ,再多的任务只需要写一个 require('load-grunt-tasks')(grunt) 。

参考的文档中提到了 time-grunt 插件,可用来显示每一个任务所花的时间和百分比,由于此示例中基本就 watch 任务占了百分百的时间。

下面是 Grunt 项目的两个基本的文件

1. package.json

{
  "name": "test_connect",
  "version": "0.0.1",
  "devDependencies": {
    "grunt-contrib-connect": "~0.6.0",
    "grunt-contrib-watch": "~0.5.3",
    "load-grunt-tasks": "~0.3.0"
  }
}

运行  npm install 下载安装上面的依赖

2. Gruntfile.js

module.exports = function(grunt){

  require('load-grunt-tasks')(grunt); //加载所有的任务
  //require('time-grunt')(grunt); 如果要使用 time-grunt 插件

  grunt.initConfig({
    connect: {
      options: {
        port: 9000,
        hostname: '*', //默认就是这个值,可配置为本机某个 IP,localhost 或域名
        livereload: 35729  //声明给 watch 监听的端口
      },

      server: {
        options: {
          open: true, //自动打开网页 http://
          base: [
            'app'  //主目录
          ]
        }
      }
    },

    watch: {
      livereload: {
        options: {
          livereload: '<%=connect.options.livereload%>'  //监听前面声明的端口  35729
        },

        files: [  //下面文件的改变就会实时刷新网页
          'app/*.html',
          'app/style/{,*/}*.css',
          'app/scripts/{,*/}*.js',
          'app/images/{,*/}*.{png,jpg}'
        ]
      }
    }
  });

  grunt.registerTask('serve', [
    'connect:server',
    'watch'
  ]);
}

现在我们配置好了一个静态文件 Web 服务器,运行命令

grunt serve

会自动打开浏览器访问 http://0.0.0.0:9000, 然后有个 watch 一直在监听文件的改变。如果 app 目录下有 index.html 则浏览该文件,没有索引文件就显示文件目录列表。

本文原始链接 http://unmi.cc/grunt-contrib-connect-build-livereload-dev-env/ , 来自隔叶黄莺 Unmi Blog

这是一个响应式设计的页面

grunt-connect-1

缩写浏览器宽度

grunt-connect-2

这时候在 app 目录中增,删相关类型的文件都会实时反映在上面的 http://0.0.0.0:9000 页面上,也就是文件列表可以实时刷新。

现在我们想要更极致的实时页面内容的预览,我们打开上面的某个页面,如 http://0.0.0.0:9000/test.html,然而我们来编辑 test.html 文件内容,来观察页面是不是能实时预览。

你也应该不能在页面上看到实时的修改,为能实时预览我们还要做点事情,看这里https://github.com/gruntjs/grunt-contrib-watch#live-reloading 有两种办法:

1. 在需要实时预览的页面里加上

<script src="http://localhost:35729/livereload.js"></script>

注意相应的主机和端口号

2. 安装浏览器扩展,包括 Safari, Chrome 和 Firefox 的,点击链接   How do I install and use the browser extensions? 安装。这样就不用在页面上引入上面的脚本。

现在看实时的预览效果

grunt-connect-livereload

grunt-connect 还可以和 grunt-connect-proxy 结合来制作本地代理访问其他域名的 api 而不用处理跨域问题,有空再体验下 grunt-connect-proxy。

原文地址:https://www.cnblogs.com/taoquns/p/5673056.html