Lexicality / Xeact

A high performance, developer-efficient and overall ballin' femtoframework for productive development in Javascript

Home Page:https://xena.greedo.xeserv.us/Xeact/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Xeact

Xeact is a high performance, developer-efficient and overall ballin' femtoframework for productive development in Javascript. It will take everything that is complicated about frontend web development and throw it in the trash.

(async () => {
    const resp = await fetch("https://httpbin.org/headers");
    const data = await resp.json();
    g("userAgent").innerText = data.headers["User-Agent"];
    
    let l = g("headerList");
    x(l);
    
    l.append(...Object.entries(data.headers)
        .map(e => h("li", {innerText: `${e[0]}: ${e[1]}`})));
})();

The cloud's the limit!

About

A high performance, developer-efficient and overall ballin' femtoframework for productive development in Javascript

https://xena.greedo.xeserv.us/Xeact/

License:Other


Languages

Language:JavaScript 41.2%Language:HTML 37.9%Language:CSS 20.9%