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

avalynx-ref

v0.0.3

Published

AvalynxRef is a Ref implementation for updating elements with a value like React's Ref or Vue's Ref.

Downloads

13

Readme

AvalynxRef

AvalynxRef is an implementation of a reference (Ref) system, similar to Refs in React or Vue, designed for updating DOM elements with a specified value. This facilitates a reactive linkage between JavaScript data and the user interface.

Features

  • Lightweight: AvalynxRef is a lightweight library that doesn't require any dependencies.
  • Ref System: Use Refs to update DOM elements with a specified value.

Example

Here's a simple example of how to use AvalynxRef in your project:

Installation

To use AvalynxRef in your project, you can directly include it in your HTML file.

Include AvalynxRef:

<script src="path/to/avalynx-ref.js"></script>

Replace path/to/avalynx-ref.js with the actual path to the file in your project.

Installation via jsDelivr (Link)

AvalynxRef is also available via jsDelivr. You can include it in your project like this:

<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/avalynx-ref.min.js"></script>

Installation via NPM (Link)

AvalynxRef is also available as a npm package. You can add it to your project with the following command:

npm install avalynx-ref

After installing, you can import AvalynxRef into your JavaScript file like this:

import { AvalynxRef } from 'avalynx-ref';

Installation via Symfony AssetMapper

php bin/console importmap:require avalynx-ref

After installing, you can import AvalynxRef into your JavaScript file like this:

import { AvalynxRef } from 'avalynx-ref';

Installation via Composer (Link)

AvalynxRef is also available as a Composer package. You can add it to your project with the following command:

composer require avalynx/avalynx-loader

After installing, you can import AvalynxLoader into your HTML file like this:

<script src="vendor/avalynx/avalynx-loader/dist/js/avalynx-loader.js"></script>

Usage

To use AvalynxRef in your project, include the AvalynxRef JavaScript file in your project and initialize the class with the appropriate selector.

const myRef = new AvalynxRef("#myElement");
myRef.value = "Updated content";

or use the isHtml option to treat the value as HTML:

const myRef = new AvalynxRef("#myElement", { isHtml: true });
myRef.value = "<p>Updated content</p>";

Options

AvalynxRef allows the following options for customization:

  • selector: (string) The selector to use for targeting tables within the DOM (default: '.avalynx-ref').
  • options: An object containing the following keys:
    • isHtml: (boolean) Treat the value as HTML (default: false).

Planned Features

  • callback function for value change

Contributing

Contributions are welcome! If you'd like to contribute, please fork the repository and submit a pull request with your changes or improvements. We're looking for contributions in the following areas:

  • Bug fixes
  • Feature enhancements
  • Documentation improvements

Before submitting your pull request, please ensure your changes are well-documented and follow the existing coding style of the project.

License

AvalynxRef is open-sourced software licensed under the MIT license.

Contact

If you have any questions, feature requests, or issues, please open an issue on our GitHub repository or submit a pull request.

Thank you for considering AvalynxRef for your project!