Health.Zone Web Search

Search results

  1. Results from the Health.Zone Content Network
  2. Post/Redirect/Get - Wikipedia

    en.wikipedia.org/wiki/Post/Redirect/Get

    Post/Redirect/Get (PRG) is a web development design pattern that lets the page shown after a form submission be reloaded, shared, or bookmarked without ill effects, such as submitting the form another time.

  3. Strangler fig pattern - Wikipedia

    en.wikipedia.org/wiki/Strangler_fig_pattern

    Strangler fig pattern In programming, the strangler fig pattern or strangler pattern is an architectural pattern that involves wrapping old code, with the intent of redirecting it to newer code or to log uses of the old code. Created by Martin Fowler, [1] its name derives from the strangler fig plant, which tends to grow on trees and eventually kill them.

  4. Hydration (web development) - Wikipedia

    en.wikipedia.org/wiki/Hydration_(web_development)

    Hydration (web development) In web development, hydration or rehydration is a technique in which client-side JavaScript converts a static HTML web page, delivered either through static hosting or server-side rendering, into a dynamic web page by attaching event handlers to the HTML elements. [ 1 ] Because the HTML is pre-rendered on a server ...

  5. Decorator pattern - Wikipedia

    en.wikipedia.org/wiki/Decorator_pattern

    Decorator pattern. In object-oriented programming, the decorator pattern is a design pattern that allows behavior to be added to an individual object, dynamically, without affecting the behavior of other instances of the same class. [1] The decorator pattern is often useful for adhering to the Single Responsibility Principle, as it allows ...

  6. Separation of content and presentation - Wikipedia

    en.wikipedia.org/wiki/Separation_of_content_and...

    Separation of content and presentation (or separation of content and style) is the separation of concerns design principle as applied to the authoring and presentation of content. Under this principle, visual and design aspects (presentation and style) are separated from the core material and structure (content) of a document. [1][2][3] A ...

  7. Visitor pattern - Wikipedia

    en.wikipedia.org/wiki/Visitor_pattern

    A visitor pattern is a software design pattern that separates the algorithm from the object structure. Because of this separation, new operations can be added to existing object structures without modifying the structures.

  8. Holy grail (web design) - Wikipedia

    en.wikipedia.org/wiki/Holy_grail_(web_design)

    The holy grail is a web page layout which has multiple equal-height columns that are defined with style sheets. It is commonly desired and implemented, but for many years, the various ways in which it could be implemented with available technologies all had drawbacks. [1] Because of this, finding an optimal implementation was likened to searching for the elusive Holy Grail.

  9. Isomorphic JavaScript - Wikipedia

    en.wikipedia.org/wiki/Isomorphic_JavaScript

    With Isomorphic JavaScript, when a client web page is first requested from the server, the view of the page is generated on the server, similar to server-side dynamic web pages, and sent over to the client. The client can then render the view immediately. After the initial view is rendered, the complete SPA is downloaded in the background, and subsequent actions are handled client-side.