1.0.0 • Published 5 months ago

ezi v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
5 months ago

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

1.0.0

5 months ago

0.0.2

10 months ago

0.0.1

10 months ago