Last active
September 21, 2015 13:36
-
-
Save light9/7603e133b69cef16bb0f to your computer and use it in GitHub Desktop.
browser synch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| npm install -g browser-sync | |
| browser-sync start --files "/srv/www/crm/public_html/sites/all/themes/crm/css/*.css" --proxy --port 4000 | |
| //kill process | |
| sudo netstat -lpn |grep :4000 | |
| fuser -n tcp -k 4000 | |
| /// after add js file before </body> and go to http://194.177.20.106:3009/ | |
| // for drupal use https://www.drupal.org/project/link_css | |
| http://www.browsersync.io/docs/command-line/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment