Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nolimits4web/dom7
Minimalistic JavaScript library for DOM manipulation, with a jQuery-compatible API
https://github.com/nolimits4web/dom7
dom dom7 framework7 javascript-library mobile
Last synced: 6 days ago
JSON representation
Minimalistic JavaScript library for DOM manipulation, with a jQuery-compatible API
- Host: GitHub
- URL: https://github.com/nolimits4web/dom7
- Owner: nolimits4web
- License: mit
- Created: 2017-04-13T13:19:12.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2023-03-04T02:26:24.000Z (almost 2 years ago)
- Last Synced: 2025-01-20T08:04:39.581Z (13 days ago)
- Topics: dom, dom7, framework7, javascript-library, mobile
- Language: JavaScript
- Homepage: http://framework7.io/docs/dom7.html
- Size: 1.95 MB
- Stars: 163
- Watchers: 7
- Forks: 47
- Open Issues: 28
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
[![devDependency Status](https://david-dm.org/nolimits4web/dom7/dev-status.svg)](https://david-dm.org/nolimits4web/dom7#info=devDependencies)# Dom7
## Minimalistic JavaScript library for DOM manipulation, with a jQuery-compatible API
Dom7 - is the default DOM manipulation library built-in [Framework7](https://framework7.io). It utilizes most edge and high-performance methods for DOM manipulation. You don’t need to learn something new, its usage is very simple because it has the same syntax as well known jQuery library with support of the most popular and widely used methods and jQuery-like chaining.
See [Framework7 Dom7](https://framework7.io/docs/dom7.html) documentation for usage examples and available methods.
## Build
You will need Node.js installed on your system.
First, install all required dependencies
```
$ npm install
```To build development version:
```
$ npm run build:dev
```The resulting files are:
1. buid/dom7.js
2. buid/dom7.module.jsTo build production (minified) version:
```
$ npm run build:prod
```The resulting files are:
1. dist/dom7.js
2. dist/dom7.min.js
3. dist/dom7.module.js