https://github.com/vikrantnegi/gulp-browser-reload
Reload browser every time you make any changes in your HTML, CSS or Javascript files.
https://github.com/vikrantnegi/gulp-browser-reload
browsersync css gulp nodejs
Last synced: 3 months ago
JSON representation
Reload browser every time you make any changes in your HTML, CSS or Javascript files.
- Host: GitHub
- URL: https://github.com/vikrantnegi/gulp-browser-reload
- Owner: vikrantnegi
- Created: 2015-10-21T12:45:40.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2016-08-16T06:38:09.000Z (almost 10 years ago)
- Last Synced: 2025-04-08T12:19:25.361Z (over 1 year ago)
- Topics: browsersync, css, gulp, nodejs
- Language: JavaScript
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gulp-BrowserSync-Example
>Reload your web browser every time you make any changes in your HTML, CSS or Javascript files.
### Prerequisites
* node >=0.12.8
* npm ^3.10.0
* gulp-cli ~1.2 (global) ```npm install gulp-cli@1.2```
## Quick Start:
```shell
# Browse to project folder
cd /path/to/project/this/folder
# Install browserSync and other dependencies
npm install
# Start server
gulp
```
## Directory Structure:
```
├── project-name/
│ ├── src/
│ │ ├── css/
│ │ ├── fonts/
│ │ ├── img/
│ │ ├── js/
│ │ └── index.html
│ ├── gulpfile.js
│ └── package.json
```
### Quick Links
* [gulp](http://gulpjs.com)
* [BrowserSync](http://www.browsersync.io)
* [node-js](https://nodejs.org/en/)
* [Install node js on Ubuntu/Mac OS](https://github.com/creationix/nvm)