1# JS UI Framework Overview<a name="EN-US_TOPIC_0000001064068634"></a> 2 3- [Basic Capabilities](#section1393616301083) 4- [Overall Structure](#section105231413161115) 5 6The OpenHarmony JS UI framework provides basic, container, and canvas UI components and standard CSS animation capabilities. It supports the web-development-like programming paradigm. 7 8## Basic Capabilities<a name="section1393616301083"></a> 9 10- **Web-development-like paradigm** 11 12 The JS UI framework supports languages that are similar to those for web development, such as HTML and CSS. You can use them to describe the page layout and style, and use JavaScript \(conforming to the ECMAScript specification\) for page behavior. This paradigm allows you to avoid code for UI state switching. The view configuration information is intuitive. 13 14 15 16## Overall Structure<a name="section105231413161115"></a> 17 18The JS UI framework consists of the application, framework, engine, and porting layers. 19 20 21 22- **Application** 23 24 Contains applications with FA developed with the JS UI framework. The FA application in this document refers to the application with FAs developed using JavaScript. 25 26- **Framework** 27 28 Parses UI pages and provides the Model-View-ViewModel \(MVVM\), page routing, custom components and more for front end development. 29 30- **Engine** 31 32 Accomplishes animation parsing, Document Object Model \(DOM\) building, layout computing, rendering command building and drawing, and event management. 33 34- **Porting Layer** 35 36 Abstracts the platform layer to provide abstract interfaces to connect to the platform. For example, event interconnection, rendering pipeline interconnection, and lifecycle interconnection. 37 38 39