JavaScript Framework

From GM-RKB
Jump to navigation Jump to search

A JavaScript Framework is a front-end framework is based on JavaScript.



References

2023

  • (Wikipedia, 2023) ⇒ https://en.wikipedia.org/wiki/Web_framework#General-purpose_website_frameworks Retrieved:2023-1-20.
    • Web frameworks must function according to the architectural rules of browsers and protocols such as HTTP, which is stateless. Webpages are served up by a server and can then be modified by the browser using JavaScript. Either approach has its advantages and disadvantages.Server-side page changes typically require that the page be refreshed, but allow any language to be used and more computing power to be utilized. Client-side changes allow the page to be updated in small chunks which feels like a desktop application, but are limited to JavaScript and run in the user's browser, which may have limited computing power. Some mix of the two is typically used. Applications which make heavy use of JavaScript and only refresh parts of the page, are called single-page applications and typically make use of a client-side JavaScript web framework to organize the code.