{"id":15293419,"url":"https://github.com/mcqua007/quantdom","last_synced_at":"2025-07-27T14:08:06.891Z","repository":{"id":42075074,"uuid":"479902999","full_name":"mcqua007/quantdom","owner":"mcqua007","description":"A small javascript DOM manipulation library based on Jquery's syntax. Acts as a small utility library with the most common functions.","archived":false,"fork":false,"pushed_at":"2024-09-24T21:15:17.000Z","size":342,"stargazers_count":8,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-07-02T23:07:51.878Z","etag":null,"topics":["dom","dom-manipulation","dom-utilities","javascript","jquery","js-utilities","mini","mini-jquery","nano","queryselectors"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/quantdom","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mcqua007.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-04-10T03:30:07.000Z","updated_at":"2024-09-24T21:15:21.000Z","dependencies_parsed_at":"2024-10-18T17:51:44.539Z","dependency_job_id":"c2c7478b-e208-4bc9-a812-4dee779b8ac9","html_url":"https://github.com/mcqua007/quantdom","commit_stats":null,"previous_names":[],"tags_count":12,"template":false,"template_full_name":null,"purl":"pkg:github/mcqua007/quantdom","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mcqua007%2Fquantdom","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mcqua007%2Fquantdom/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mcqua007%2Fquantdom/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mcqua007%2Fquantdom/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mcqua007","download_url":"https://codeload.github.com/mcqua007/quantdom/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mcqua007%2Fquantdom/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267368932,"owners_count":24076093,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-27T02:00:11.917Z","response_time":82,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dom","dom-manipulation","dom-utilities","javascript","jquery","js-utilities","mini","mini-jquery","nano","queryselectors"],"created_at":"2024-09-30T16:48:01.346Z","updated_at":"2025-07-27T14:08:06.863Z","avatar_url":"https://github.com/mcqua007.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Quantdom JS\n![npm bundle size](https://img.shields.io/bundlephobia/min/quantdom?color=%234338ca\u0026logoColor=%232a2b2c) ![npm bundle size](https://img.shields.io/bundlephobia/minzip/quantdom?color=%234338ca\u0026label=gzipped%20size\u0026logoColor=%232a2b2c) ![license type](https://img.shields.io/npm/l/quantdom?color=%234338ca\u0026logoColor=%232a2b2c)\n![test coverage](https://img.shields.io/badge/test%20coverage-100%25-4c51bf?style=flat\u0026logoColor=%232a2b2c\u0026color=%234338ca)\n\nQuantdom is a very small (about 600 bytes when run through [terser](https://www.npmjs.com/package/terser) \u0026 gzipped) dom manipulation library that uses a Jquery like syntax and supports chaining but is only composed of the most commonly used utility functions. Quantdom makes working with the DOM less verbose, without all the bloat from jQuery. I chose to base it off of Jquery's syntax as many developers are already familiar with it and it's very concise. \nThis library is meant to be as small as possible (without being unreadable) so when you need to directly interact with the DOM you can use this library alog side of a larger framework without all the extra bloat.\n\n***Why the name, QuantDOM ?*** \nTaken from [Wikipedia's *Quantum* article](https://en.wikipedia.org/wiki/Quantum), *\"In physics, a quantum (plural quanta) is the minimum amount of any physical entity (physical property) involved in an interaction.\"* This fits the goal of this project as Quantdom is made to reduce the effort when having to deal directly with the DOM.\n\n**Supports Chaining:** \n``` javascript\n$('.modal').show().addClass('active-overlay');\n```\n\n## Getting Started\n\n### Install via NPM\n1. Install using npm ` npm i quantdom` or with yarn `yarn add quantdom`\n2. Then import into project using `import q from 'quantdom'` or use the jQuery popularized $ as your function name. i.e. `import $ from 'quantdom'`\n\n### Install via CDN\n\n1. Use latest version [https://cdn.jsdelivr.net/npm/quantdom](https://cdn.jsdelivr.net/npm/quantdom/dist/quantdom.min.js) or specify a certain version [https://cdn.jsdelivr.net/npm/quantdom@1.2.8/dist/quantdom.min.js](https://cdn.jsdelivr.net/npm/quantdom@1.2.8/dist/quantdom.min.js). Visit [Quantdom's JSDelivr](https://www.jsdelivr.com/package/npm/quantdom?path=dist) page for ESM versions.\n\n    ``` html\n    \u003cscript src=\"https://cdn.jsdelivr.net/npm/quantdom\"\u003e\u003c/script\u003e\n    ```\n\n2. Then start using ex.\n\n    ``` javascript\n    $('.drop-down').attr('aria-expanded', 'true');\n    ```\n\n### Try it Out!\n- Fork the below playground by clicking th New Bin button and start editing!\n- [Go to JSBin Playground](https://jsbin.com/yevusevahu/edit?html,output)\n### Documentation\n*View generated [documentation](docs.md)*","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmcqua007%2Fquantdom","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmcqua007%2Fquantdom","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmcqua007%2Fquantdom/lists"}