(Currently WIP)
Zest is a lightweight, powerful, and extensible frontend library for building modern web applications with TypeScript. Zest is inspired by the simplicity of React and aims to provide an easy-to-use, yet flexible way to create beautiful user interfaces.
- Minimalistic and lightweight
- Intuitive API and component-based architecture
- Powerful state management with built-in store
- Virtual DOM for efficient updates
- TypeScript support for type safety and better developer experience
Here's a simple example to get you started:
import { render } from "zest";
const App = () => {
return (
<div>
<h1>Hello, Zest!</h1>
<p>Welcome to your Zest-powered application.</p>
</div>
);
};
render(<App />, document.getElementById("root"));You can find various examples of Zest applications in the examples folder of our GitHub repository.
Contributions are welcome! Please read our contributing guide to learn how you can contribute to the project.
Project Zest is MIT licensed.
Special thanks to the developers and maintainers of React, as their work served as inspiration for this project.
