1.1.2 • Published 1 year ago

nathi v1.1.2

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

Nathi JavaScript Library

Nathi is a simple custom JavaScript library that provides a collection of utility methods for DOM manipulation and event handling.

Installation

Use the following command to install the library via npm:

Using npm

Install the package using npm:

npm install nathi

To use the library, include it in your project and create a new instance:

const NathiLib = require("nathi");
const nathiLib = new NathiLib();

ES6

import NathiLib from "nathi";
const nathiLib = new NathiLib();

Using script tag

For browser usage, include the bundled file in your HTML:

<script src="node_modules/nathi/dist/nathiLib.bundle.js"></script>
<script>
  const nathiLib = new NathiLib();
</script>

API Reference

createHTMLElement(tagName, attributes, textContent);

Create an HTML element with given attibutes and text content.

  • tagName (string): The tag name of the element to create.
  • attributes (object): An object containing the attributes and their values.
  • textContent (string, optional): The text content for the element.

Returns the created HTML element.

Examle:

const button = nathiLib.createHTMLElement(
  "button",
  { id: "myButton", class: "btn" },
  "Click me"
);
appendChildren(parent, childrenArray);

Append an array of children to a parent element.

  • parent (HTMLelement): The parent element to which the children will be appended.
  • childrenArray (Array): An array of HTML elements to append to the parent.
addClass(element, className);

Add a class to the specified element.

  • element (HTMLElement): the element to which the class will be added.
  • className (string): The name of the class to too.
removeClass(element, className);
  • element (HTMLElement): The element from which the class will be removed.
  • className (string): The name of the class to remove.
on(selectorOrElement, eventName, callback);

Adds an event listener to the specified element or element found by the provided CSS selector.

  • selectorOrElement (string | HTMLElement): The CSS selector string or DOM element to which the event listener should be added.
  • eventName (string): The name of the event to listen for.
  • callback (Function): The function to be called when the event occurs.
const nathiLib = new NathiLib();

// Using a CSS selector string
nathiLib.on("#example", "click", () => {
  console.log("Element clicked");
});

// Using a DOM element
nathiLib.on(document.getElementById("example"), "click", () => {
  console.log("Element clicked");
});

Project Structure

The nathi library has been organized using a separation of concerns approach, with each method placed in its own file inside the src folder. The index.js file imports and exports these methods as part of the NathiLib class. This structure makes it easier to maintain and add new features.

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

1.1.2

1 year ago

1.1.1

1 year ago

1.1.0

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago