Jump to content

Brackets (text editor)

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by Manop (talk | contribs) at 04:20, 15 November 2014 (wikify). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Developer(s)Adobe Systems
Initial release4 November 2014; 9 years ago (2014-11-04)[1]
Stable release
1.0[2] / 4 November 2014; 9 years ago (2014-11-04)
Preview release1.14 preview 1 (April 15, 2019; 5 years ago (2019-04-15)) [±][3]
Repository
Written inHTML, CSS and JavaScript
Operating systemWindows, OS X and Linux
Size~39 MB
Available in31 languages[4]
TypeText editor
LicenseMIT License
Websitebrackets.io

Brackets is a free open-source editor written in HTML, CSS, and JavaScript with a primary focus on Web Development. It was created by Adobe Systems, licensed under the MIT License, and is currently maintained on GitHub. Brackets is available for cross-platform download on Mac, Windows, and Linux.

Features

Brackets provides several features[5] including:

Quick Edit

Quick edit enables inline editing of CSS, Color Property, and JavaScript elements for developers. This built-in feature can be applied to multiple functions or properties simultaneously and all updates are applied directly to the file associated with the changed elements.

'{{{1}}}'

  • HTML File
    • Applying quick edit to HTML elements will display all corresponding CSS properties in a box beneath the selected element. Users can choose to create new CSS rules directly within the editor and edit a tag's CSS properties inline without leaving the context of the HTML file.
  • JavaScript File
    • On JavaScript functions, quick edit performs the same procedure as with HTML elements but displays the selected function’s body within the drop down box. All updates to the function’s body will propagate and update directly within the corresponding JavaScript file.
  • Files containing Hex or RGB color properties
    • For color properties, quick edit will return an inline color picker for previewing and color adjustment functionality.

Live Preview

Using Live Preview, Brackets pushes code edits instantly to the browser to present an updated page without having to reload.
Two scenarios to Live Preview: '{{{1}}}'

  • No Back End Logic:
    • Using Live Preview, Brackets will launch the chosen HTML file in Google Chrome by supplying static content from Brackets built-in server. This procedure does not require any back end logic to support viewing changes to the HTML file.
  • Back End Logic:
    • With back end logic, Brackets will direct Google Chrome to a provided project URL running on a separate server but will disable support for HTML-related features. As a result, the browser will not be able to update any HTML, PHP, etc. files in real time and element highlighting will also be disabled for these files. Only edits and element highlighting related to CSS files will be reflected in real time. All non-CSS file updates will be auto-reloaded instead. These limitations exist because providing live editing functionality for HTML files requires injecting annotations into the HTML code before the code is loaded into the browser. These injections are normally handled by Brackets built-in server but are non-existent when projects make use of separate personal servers.

Functionality

  1. HTML & CSS real time updates (without reloading)
  2. Element Highlighting: Elements selected in HTML and CSS files are highlighted within the browser.

Live preview limitations

  • Currently only works with desktop Google Chrome as the target browser.
  • Opening developer tools in Google Chrome will close all live development connections.
  • All files to be viewed must be inside a currently open folder in Brackets.
  • Only one HTML file can be previewed at a time.
  • Real time updates are paused when syntactically invalid HTML is encountered. Brackets will resume pushing changes to the browser when the syntax is corrected.

Theseus Integration [9]

Theseus is an open-source JavaScript debugger for Brackets that enables developers to set break points, step through code, and inspect the value of variables in real time. Theseus can be used to debug any extension in Brackets and is easily installed using the built-in extension manager. Theseus also works in conjunction with Live Preview through a proxy server that records a function and its associated values every time the function is called.

Functionality

Quick Docs [5]

Related to quick edit, quick docs is a feature used to display relevant documentation inline. In a CSS/LESS/SCSS file, quick docs will open inline documentation for any selected property. Quick Docs can also be applied to multiple properties simultaneously.

Being built with HTML, CSS, and Javascript, developers can provide additional functionality to Brackets by creating extensions. These extensions can be found and installed using the built-in extension manager. Extensions can also be found online via Brackets Extension Registry.

See also

References

  1. ^ Stewart, Ryan. "Brackets 1.0 and Extract for Brackets (Preview) Now Available". Brackets Blog. Adobe. Retrieved 8 November 2014.
  2. ^ Stewart, Ryan. "Brackets 1.0 and Extract for Brackets (Preview) Now Available". Brackets Blog. Adobe. Retrieved 8 November 2014.
  3. ^ https://github.com/adobe/brackets/releases
  4. ^ github.com/adobe/brackets/blob/master/src/nls/README.md
  5. ^ a b c "How to Use Brackets", Adobe
  6. ^ Text Editor Review – Adobe Brackets, January 22, 2014
  7. ^ Deeper In the Brackets Editor, November 8, 2013
  8. ^ "Brackets: Free Open Source Code Editor Built With HTML/CSS", Hongkiat
  9. ^ "Theseus JavaScript Debugger for Chrome and NodeJS", Brackets Blog, August 28, 2013
  10. ^ "A Review of the Brackets Editor", SitePoint, April 18, 2014