Skip to content
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.

Live Preview Overview

Randy Edmunds edited this page Jan 14, 2015 · 29 revisions

State of Live Preview (formerly known as "Live Development") as of January, 2015.

Connecting

Live Preview has been implemented 2 ways:

  1. Chromium Dev Tools web socket (original)

  2. New Multibrowser Implementation using Injected scripts

    • Currently disabled and can be switch to with a feature flag
    • Connects to default browser
    • URL can be pasted into any other browser
    • See Live Preview MultiBrowser for details about this implementation.

Implementation is set in LiveDevelopment/main.js `_setImplementation()' method.

Live Preview Server

3 types of server connections:

  1. Built-in nodejs server - this is the default connection type.
  2. Use local server - this is done by specifying Base URL in Project Settings... dialog.
  3. Fallback is file:// protocol.

For more info see Server API and URL Mapping docs.

Interstitial page

Loaded to ensure a connection before starting agents and then navigating to document url.

brackets-shell Native Implementation

Toolbar Icon

Used to toggle Live Preview on/off. Can also use File > Live Preview menu item.

Icon shows 3 different states: disconnected, connecting, and connected. Tooltips display more detailed state information. Twipsy is displayed at icon when browser is disconnected for external reasons.

Remote Functions

Agents/RemoteAgent.js injects Agents/RemoteFunctions.js into Live Preview page for:

  • Highlighting
  • Live HTML

Live CSS

  • 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

Live HTML

Currently only supported with nodejs server

All Other File Types

Reload File on Save

Live JavaScript Research - not yet implemented.

User Docs

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

Misc.

Clone this wiki locally