LiveReload
LiveReload plugin for SublimeText
Details
Installs
- Total 757K
- Win 549K
- Mac 128K
- Linux 81K
| Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | Nov 5 | Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | Oct 7 | Oct 6 | Oct 5 | Oct 4 | Oct 3 | Oct 2 | Oct 1 | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Windows | 13 | 33 | 42 | 36 | 23 | 22 | 13 | 16 | 25 | 34 | 24 | 29 | 27 | 21 | 20 | 19 | 24 | 35 | 20 | 20 | 17 | 19 | 23 | 22 | 29 | 23 | 25 | 14 | 20 | 11 | 18 | 23 | 29 | 30 | 17 | 26 | 28 | 37 | 38 | 29 | 17 | 12 | 19 | 21 | 17 | 25 |
| Mac | 3 | 8 | 5 | 9 | 11 | 13 | 3 | 4 | 9 | 9 | 9 | 7 | 11 | 2 | 6 | 2 | 11 | 6 | 7 | 10 | 5 | 4 | 8 | 6 | 12 | 14 | 6 | 5 | 7 | 7 | 10 | 12 | 14 | 9 | 4 | 10 | 7 | 7 | 9 | 7 | 5 | 2 | 1 | 3 | 2 | 5 |
| Linux | 1 | 1 | 3 | 3 | 6 | 6 | 2 | 1 | 5 | 1 | 4 | 5 | 2 | 3 | 5 | 3 | 6 | 5 | 6 | 2 | 4 | 2 | 1 | 4 | 4 | 7 | 5 | 4 | 1 | 4 | 5 | 5 | 3 | 2 | 2 | 9 | 5 | 3 | 4 | 2 | 1 | 3 | 2 | 4 | 4 | 1 |
Readme
- Source
- raw.githubusercontent.com
⚠️ Repository Archived
This repository is no longer maintained and has been archived.
I originally forked this project after it was abandoned over 10 years ago, but I have not used or updated it in many years. See https://github.com/alepez/LiveReload-sublimetext3/issues/10
No further updates, bug fixes, or support will be provided.
If you are interested in continuing development, feel free to fork the repository.
Thank you for your understanding.
LiveReload for Sublime Text 3
A web browser page reloading plugin for the Sublime Text 3 editor.
Installing
With Package Control:
- Run “Package Control: Install Package” command, find and install
LiveReloadplugin. - Restart ST editor (if required)
Manual install, Linux users
cd ~/.config/sublime-text-3/Packages
rm -rf LiveReload
git clone https://github.com/alepez/LiveReload-sublimetext3 LiveReload
Manual install, OSX users
cd ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/
rm -rf LiveReload
git clone https://github.com/alepez/LiveReload-sublimetext3 LiveReload
Using
Enable desired plug-ins via Command Palette (Ctrl+Shift+P) add livereload.js to you html document.
<script>document.write('<script src="http://' + (location.host || '${1:localhost}').split(':')[0] + ':${2:35729}/livereload.js?snipver=1"></' + 'script>')</script>
You can also use one of the extensions listed here http://livereload.com/extensions/
Available plug-ins:
- Compass Preprocessor, compiles .scss, .sass and refreshes page when file is compiled
- Less Preprocessor, compiles .less and refreshes page when file is compiled
- Sass Preprocessor, compiles .scss, .sass with the latest installed sass version and refreshes page when file is compiled
- CoffeeScript Preprocessor, compiles .coffee and refreshes page when file is compiled
- Simple Reload, refresh page when file is saved
- Simple Reload with delay(400ms), wait 400ms then refresh page, when file is saved
Examples
- Simple Reload from http GET request, reloads page on visit to http://localhost:35729/callback/simplereloadplugincallback/on_post_compile
- Send content on change, sends file content to browser console
Sass Preprocessor usage
First, install latest version of sass “bash sudo gem install sass
Activate the plugin in SublimeText3 via the `package settings -> livereload -> plugins -> enable/disable plugins` menu
By default, the plugin save the compiled css in same dir of sources.
You can change this by creating a `sass_config.json` file near your sources:
```json
{
"destination_dir": "../../webroot/css"
}
Plug-in api
https://livereload-for-sublime-text.readthedocs.org/en/latest/
Thanks
The original plugin was written by Janez Troha