First contact with EON

Hi, explorer...

You have found eon.js, a framework that will allow you to build amazing web-based applications in no time.

Does it look like the DOM API? that's because it's the DOM API (^_^)
>declarative (html)
Import any eon.js component and use it just like any other regular HTML element.
                                
<eon-button label="hello"></eon-button>
                                
                            
>programmatic (javascript)
Use JavaScript DOM API to create eon.js components programmatically.
                                
var button = document.createElement("eon-button");

button.label = "world";
document.body.appendChild(button);
                                
                            

Compare

Nested Components
Interpolation/Binding
No Mandatory Transpiler
Themeable
Direct DOM
Native HTML/JS DOM syntax
Includes UI Components
HTML logic less
Custom Imports
Language Support
PWA Support

Resources

Using eon-cli:
npm install @vimlet/eon-cli -g
eon-cli init
From GitHub releases:
https://github.com/vimlet/eon/releases
Using our CDN:
                            
<script src="https://cdn.jsdelivr.net/gh/vimlet/eon-cdn/build/eon/eon-bundle.min.js"></script>
                            
                        
Subscribe to get noticed of last updates
*Required *Not valid
I have read and accept the privacy policy