npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

papadam

v0.0.5

Published

A lightweight JavaScript library that provides reactivity and data-binding for DOM elements. It allows you to create reactive state objects that automatically update the DOM when the state changes, making it easy to implement dynamic and interactive UIs.

Downloads

31

Readme

Papadam

papadam is a lightweight JavaScript library that provides reactivity and data-binding for DOM elements. It allows you to create reactive state objects that automatically update the DOM when the state changes, making it easy to implement dynamic and interactive UIs.

Features

  • Reactive State: Automatically updates the DOM when the state changes.
  • DOM Binding: Bind data to DOM elements using @data attributes.
  • Event Handling: Handle events with @event attributes (like @click, @input).
  • No Build Tools Required: Works directly in the browser with vanilla JavaScript.
  • Minimalistic Design: The entire library is just 1.5 KB, making it an extremely efficient choice for performance-conscious applications.

Data Binding with @data

  • The @data attribute is used to bind a DOM element to a property in the reactive state managed by usePapadam. Any change in state would update the DOM element.

Example:

<span @data="count"></span>

<script>
    const state = Papadam.usePapadam({
        count: 0
    });

    state.count = 100 // This would update the <span>
</script>

Event Handlers Support

  • @click
  • @mouseenter
  • @mouseleave
  • @input
  • @keydown
  • @change
  • @focus
  • @blur

Note: papadam supports all JavaScript events, so you can use any event name with the @ prefix (e.g., @submit, @keyup, @resize, etc.).

Installation

You can use papadam in your project in multiple ways.

1. Via CDN (Content Delivery Network)

To use papadam directly from a CDN, include the following <script>.

<script src="https://cdn.jsdelivr.net/npm/papadam/dist/index.min.js"></script>

Then, in your JavaScript file:

const state = Papadam.usePapadam({
    count: 0
});

2. Via import (ES Modules)

First, install the package:

npm install papadam

Then, in your JavaScript file:

import { usePapadam } from 'papadam';

Basic Usage

HTML Structure

To use papadam, you need to set up your HTML with special data-binding attributes.

Example HTML

<span @data="count"></span>
<button @click="count++">Increment Count</button>

JavaScript

You initialize a reactive state using usePapadam(). The state object can contain any properties you want to be bound to the DOM.

Example JavaScript

// Initialize the reactive state with some default values.
const state = usePapadam({
    message: "Welcome to Papadam!",
    count: 0, // Initial count value
});

// Dynamically change state after 3 seconds
setTimeout(() => {
    state.message = "State updated after 3 seconds!";
}, 3000);

How It Works

  1. Reactive State: The usePapadam function creates a reactive proxy for the provided state. The state can contain any properties, and whenever those properties change, the DOM will automatically update.

  2. Data Binding: Elements with the @data attribute will evaluate the expression inside the attribute and display the result in the element’s inner HTML. In the example above, the <h1> element binds the count property to display the current count.

  3. Event Binding: You can bind events like @click or @input to HTML elements. When the event is triggered, the corresponding JavaScript expression in the attribute will be executed. In the example above, clicking the <button> increments the count.

  4. No Framework Overhead: This library provides the basic functionality of a reactive framework, without requiring any build tools or heavy dependencies.

Advanced Usage

You can bind more complex expressions or use JavaScript functions in your event handlers.

Example

<input
    type="text"
    @input="message = event.target.value"
    placeholder="Type a message"
/>
<span @data="message"></span>

In this case, when the input field is updated, the message property is updated, which automatically triggers the DOM to reflect the new message.

Build

After cloning the repo , run the below command

npm install
npm run build

Contributing

If you'd like to contribute to the project, feel free to fork the repository and submit a pull request. You can also report bugs or suggest new features by opening an issue.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Changelog

You can find the detailed changelog of this project in the CHANGELOG.md file.

Additional Notes

  • This library is designed to be simple and minimalistic. It does not include routing, templating, or other advanced features found in larger frameworks.
  • It is intended for small to medium-sized projects or for those who want to add reactivity to a project without introducing a full-fledged framework.