grunt使用watch和livereload的Gruntfile.js的配置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了grunt使用watch和livereload的Gruntfile.js的配置相关的知识,希望对你有一定的参考价值。
周末在家看angularJS, 用grunt的livereload的自动刷新, 搞了大半天, 现在把配置贴出来, 免得以后忘记了, 只要按照配置一步步弄是没有问题的;
开始的准备的环境安装是:
(1):nodeJS,去官方网站下载(href);
(2):然后把nodeJS加到全局的环境变量里面去(nodeJS安装好了就能用npm这个命令了),参考(href);
(3):执行npm install grunt -g 和 npm install -g grunt-cli,一个是安装服务端的gurnt一个是客户端的grunt(反正都安装就好了),参考(href)
第一步:新建一个叫做Gruntfile.js的js文件
运行下面代码
module.exports = ‘package.json‘9000‘127.0.0.1‘, livereload: 35729 , "html" 35729 ‘**/*‘‘default‘,["connect","watch"‘grunt-contrib-watch‘‘grunt-contrib-connect‘
2:新建一个package.json的文件, 直接在cmd(命令行)下执行npm install即可把所有的node_module自动下载下来;
运行下面代码
{ "name": "nono", "version": "0.0.0", "description": "for watch", "main": "Gruntfile.js", "dependencies": { "grunt": "~0.4.5", "express": "~3.15.2", "grunt-contrib-connect": "~0.6.0", "grunt-contrib-watch": "~0.5.3"}, "devDependencies": {}, "scripts": { "test": "echo \"Error: no test specified\" && exit 1"}, "repository": { "type": "git", "url": "sqqihao.github.com"}, "keywords": [ "nono"], "author": "nono", "license": "__MIT__"}
好了, 现在在当前目录下执行grunt, grunt会自动监控所有文件的变化, 当你的文件一旦发生改变的, 你通过127.0.0.1打开的所有html格式文件都会自动刷新;
;
以上是关于grunt使用watch和livereload的Gruntfile.js的配置的主要内容,如果未能解决你的问题,请参考以下文章
Grunt Watch致命错误:听EACCES和livereload
如何在不刷新整个页面的情况下让 Grunt/Watch/LiveReload 重新加载 Sass/CSS?
Grunt,Livereload 与 Maven 和码头服务器
Grunt:查看多个文件,仅编译更改 - livereload 中断?
javascript Shopware Grunt BrowserSync Livereload
Yeoman Angular.js grunt serve-d 应用程序从 livereload.js?snipver=1 延迟很长