An open API service indexing awesome lists of open source software.

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.

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)