Coder Social home page Coder Social logo

carbonium's Introduction

test Coverage Status CodeFactor Size npm version GitHub

Carbonium

One kilobyte library for easy manipulation of the DOM

With carbonium, you can call $(selector) and the result can be accessed as both an DOM element and an array of matched elements. DOM element operations are applied to all matched elements.

Examples

To set the left CSS property of all elements with the class indent to 40 pixels:

$(".indent").style.left = "40px";

To add the class important to all div's with "priority" as content:

$("div")
  .filter((el) => el.textContent == "priority")
  .classList.add("important");

You can use carbonium to create elements:

const error = $("<div class='error'>An error has occured!</div>")[0];

Installation

npm install --save-dev carbonium

Now you can import carbonium:

import { $ } from "carbonium";

If you don't want to install or use a bundler like webpack or rollup.js, you can import carbonium like this:

const { $ } = await import(
  "https://cdn.jsdelivr.net/npm/carbonium@1/dist/bundle.min.js"
);

API

Select elements

$(selector [, parentNode])

Parameters

Name Type Description
selector string Selector to select elements
parentNode Document | Element (optional) Document or element in which to apply the selector, defaults to document

Returns

An array of the matched elements, which can also be accessed as a single element.

Create element

$(html [, parentNode])

Parameters

Name Type Description
html string HTML of element to create, starting with "<"
parentNode Document | Element (optional) Document or element in which to apply the selector, defaults to document

Returns

An array with one created element.

TypeScript

If you use TypeScript, it's good to know Carbonium is written in TypeScript and provides all typings. You can use generics to declare a specific type of element, for example HTMLInputElement to make the disabled property available:

$<HTMLInputElement>("input, select, button").disabled = true;

Why?

You might find most frameworks are quite bulky and bad for performance (1). On the other side, you might find using native DOM and writing document.querySelectorAll(selector) each time you want to do some DOM operations to become tedious. You can write your own helper function, but that only takes part of the pain away.

Carbonium seeks to find the sweet spot between using a framework and using the native DOM.

jQuery

Isn't this just jQuery and isn't that obsolete and bad practice?

No. Carbonium doesn't have the disadvantages of jQuery:

  1. Carbonium is very small: just around one kilobyte.
  2. There's no new API to learn, carbonium provides only standard DOM API's.

Browser support

Carbonium is supported by all modern browsers. It is tested to work on desktop and mobile with Firefox 79, Chrome 84, Safari 13 and Edge 84. It should work with all browsers supporting Proxy, see Can I use Proxy for support tables.

Name

Photo of diamond and graphite

Carbonium is the Latin name for carbon. Carbon has two forms (allotropes): graphite and diamond. Just like this library, in which the result presents itself both as one element and as a list of elements.

Photo CC BY-SA 3.0

License

Copyright 2020 Edwin Martin and released under the MIT license.

carbonium's People

Contributors

edwinm avatar dependabot[bot] avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.