8000 GitHub - kouhaidev/Xeact: A high performance, developer-efficient and overall ballin' femtoframework for productive development in Javascript
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
forked from Xe/Xeact

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

License

Notifications You must be signed in to change notification settings

kouhaidev/Xeact

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 39.9%
  • JavaScript 38.3%
  • CSS 21.8%
0