1.0.0 • Published 5 months ago
ezi v1.0.0
Hi there 👋
Welcome to the sleek and minimal framework that brings dynamic behavior to JavaScript! ✨
Features
- Smooth Integration: Easy-to-use framework for adding dynamic functionality to your JavaScript projects.
- Minimalistic Design: Focus on what matters with a clean and simple setup.
- Dynamic State Management: Manage and update your state with ease.
- Explore more and start building with DeshiJS today! 🚀
<div id="root"></div>
<template>
<button @click="incrementCounter()">
{ count } {count <= 1 ? 'time' : 'times' }
</button>
</template>
<script type="module">
import ezi from "//unpkg.com/ezi";
ezi.init();
useSignal({
count: 0,
incrementCounter: function () {
this.count++;
},
});
useEffect(() => {
console.log("component mounted!");
});
</script>
author: Nazmul Hossain