我正在尝试guard-livereload
在我的Codio盒子上运行。
问题是,当我“运行”项目时CONNECTION_REFUSED
,我的浏览器控制台中出现错误。
我不确定这是做什么的,因为我已将端口更改为 Codio 范围并将文件设置为监视 PHP 文件:
# A sample Guardfile
# More info at https://github.com/guard/guard#readme
guard 'livereload', :port => '4000' do
watch(%r{.+\.(css|js|html|php)$})
end
我也在我的所有页面中包含了这个文件:
<script type="text/javascript" src="http://0.0.0.0:4000/livereload.js"></script>
当我运行guard
它时,它正在等待浏览器连接。