Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ezi

Package Overview
Dependencies
Maintainers
0
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ezi

ezi A smooth, minimal framework for infusing JavaScript with dynamic behavior.

  • 0.0.2
  • latest
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

ezi

A smooth, minimal framework for infusing JavaScript with dynamic behavior.

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

FAQs

Package last updated on 29 Sep 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc