velte
v2.0.0-rc.1
Published
A Lightweight, Event-driven, Performant, Frontend framework for Modern Apps.
Downloads
38
Readme
Welcome to Velte 2 RC
- Lightweight
- Simple
- Scalable
- Event Driven
- Performant
- Out-of-the-box Proxy State Managment (VelX)
- Deep (recursive) Merge State Updates via mergician
What is Velte?
Velte is a simple, lightweight and Event Driven frontend Javascript UI framework with a declarative, scalable and component-based model for developing User Interfaces. Powered by snabbdom, one of the fastest virtual DOM libraries out there, velte inherits it's splendid performance. It's modularity makes velte powerful out of the box! Love using snabbdom? well, think of velte as high level framework wrapped around snabbdom. Velte in no way tries to reinvent the wheel, It takes the wheel and makes it easier to roll with. In summary, It's your typical modern UI framework but friendlier.
Installation
Getting started with velte
Documentation
Full documentation at https://veltejsdocs.cyclic.app
Code Example
import { VelteElement, VelteRender } from "velte"
const variableValue = "Velte is Awesome"
const App = (
<div>
<h1>{variableValue}</h1>
<p>Yes, velte uses JSX</p>
</div>
)
VelteRender(App, document.getElementById("app"))