deshijs
v2.0.5
Published
<div align="center"> <h1>DeshiJS</h1> <p>A smooth, minimal framework for infusing JavaScript with dynamic behavior.</p> </div>
Downloads
10
Readme
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 deshi from "//unpkg.com/deshijs";
deshi.init();
signal = {
count: 0,
incrementCounter: function () {
this.count++;
},
};
useEffect(() => {
console.log("component mounted!");
});
</script>
author: Nazmul Hossain