This repository has been archived by the owner on Sep 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7.6k
Live Preview Overview
Randy Edmunds edited this page Jan 13, 2015
·
29 revisions
State of Live Preview (formerly known as "Live Development") as of January, 2015.
- Chromium Dev Tools web socket
- Injected scripts
- Connects to default browser
- URL can be pasted into any other browser
- Currently disabled with a feature flag
- See Live Preview MultiBrowser for details.
3 ways to connect:
- Built-in nodejs server - this is the default connection type.
- Use local server - this is done by specifying Base URL in Project Settings... dialog.
- Fallback is
file://
protocol.
For more info see Server API and URL Mapping docs.
Loaded to ensure a connection before starting agents and loading document url.
-
NativeApp.openLiveBrowser()
andNativeApp.closeLiveBrowser()
defined in appshell/appshell_extensions.js calls operating system specific nativeOpenLiveBrowser()
andCloseLiveBrowser()
methods, respectively. Defined in:
- states: disconnected, connecting, connected
- tooltips
Agents/RemoteAgent.js injects Agents/RemoteFunctions.js into Live Preview page for:
- Highlighting
- Live HTML
- Editing CSS
- LiveDevelopment.js _styleSheetAdded
- creates a CSSDocument for each stylesheet
- updating CSSDocument.onChange sends updated stylesheet to browser
- Highlighting all elements that apply to current rule
- can enable/disable with pref, menu command
- remote function injection & calling
Currently only supported with nodejs server
-
Editing HTML
-
Highlighting current element
-
Kevin's talk at JSConfEU - first ~17 minutes
- Not yet implemented.
- Research: Live JavaScript
- All other file types...
Other Use Cases:
- When starting Live Preview...
- if .css or .js file is selected, Brackets searches for nearest index.html
- if .php is selected and Base URL is not specified, prompt for Base URL
- If Live Preview is running...
- and another HTML file is selected, it switches to that file
- and switch to a different project, Live Preview is disconnected
- [Live Development: lifecycle research and future directions](https://github.com/adobe/brackets/wiki/Live-Development:-lifecycle-
research-and-future-directions)
-
experimental
flag: very old, so most likely no longer works