DEV Community

Cover image for @WEVER - the modern technology to built incredible User Interfaces
CodeWithArif for WERVER

Posted on

@WEVER - the modern technology to built incredible User Interfaces

@WEVER JS is a node js framework and at the same time a beautiful technology to built incredible user interface in the web. It is fully customizable, flexible, declarative, component-based JavaScript framework & library to build complex and incredible UI (User Interface). This technology is an advance technology and at the same time a beginner friendly technology. This framework works on virtual dom, like react and others. Here we also use JSX (Javascript XML) toale the development declarative.

XEON JS

The main library of @WEVER is XEON JS. It's nothing but a lightweight javascript library. Here we have multiple functions to help developers to create their dream projects. The most useful function is xeon.XSET();.

1. createElement()

xeon.createElement(); function is used to create document node. This is functionally simple but working complex. This can create 5 types of namespace element including HTML and SVG.

/*
 * @param {String|Function} tag - tha name of the element or a function if component.
 * @param {Objects} attributes - Key value pairs of attributes
 * @param {Array} children - list of children.
 * @param {HTMLElement} parent - the parent element of the element, if exist.
 */
createElement(tag: String|Function, attributes: Object, children: Array, parent: HTMLElement);

To be continued...

Top comments (0)