2.0.0-rc.1 • Published 3 months ago

velte v2.0.0-rc.1

Weekly downloads
-
License
MIT
Repository
github
Last release
3 months ago

Velte banner

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"))
2.0.0-rc.1

3 months ago

2.0.0-alpha.3

9 months ago

1.1.0

9 months ago

2.0.0-alpha.0

9 months ago

2.0.0-rc.0

9 months ago

2.0.0-alpha.1

9 months ago

2.0.0-alpha.2

9 months ago

1.0.4

2 years ago