Zero is not a framework. Zero is an approach to modern frontend development without the need of a framework. Technically, Zero is a set of types and f

Search code, repositories, users, issues, pull requests...

submited by
Style Pass
2024-10-02 09:30:03

Zero is not a framework. Zero is an approach to modern frontend development without the need of a framework. Technically, Zero is a set of types and functions that enables jsx to be transpiled in dom nodes.

I see modern frameworks not as technology, they are a products. Often your users don't need pr even benefit from updates, but you do - the developer. With zero, you never have to update any framework, because its just the dom.

Under the hood zero is just a few snippets and vite/esbuild configuration that configures the transpiling process of jsx to js. All functions return dom nodes, herefore you can use all methods available on the dom.

Zero provides a set of types, that enable a good developer experience. Under the hood, the types just connect jsx types with dom types. There are caveats, but in general it works fine.

Leave a Comment