Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tachibana-shin/kijs
Library that replaces jQuery . this is a lighter and faster version compatible with ES6 and above
https://github.com/tachibana-shin/kijs
es6 faster jquery kijs library
Last synced: 9 days ago
JSON representation
Library that replaces jQuery . this is a lighter and faster version compatible with ES6 and above
- Host: GitHub
- URL: https://github.com/tachibana-shin/kijs
- Owner: tachibana-shin
- Created: 2021-12-07T04:05:03.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-04-12T23:04:11.000Z (7 months ago)
- Last Synced: 2024-04-14T06:48:55.499Z (7 months ago)
- Topics: es6, faster, jquery, kijs, library
- Language: TypeScript
- Homepage:
- Size: 719 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# kijs
Library DOM replace jQuery for >IE11
[View docs](https://tachibana-shin.github.io/kijs)[![Build](https://github.com/tachibana-shin/kijs/actions/workflows/docs.yml/badge.svg)](https://github.com/tachibana-shin/kijs/actions/workflows/docs.yml)
[![NPM](https://badge.fury.io/js/kijs.svg)](http://badge.fury.io/js/kijs)Example:
``` ts
import $ from "kijs"$("body")
.append("0")
.append("Click me!")let count = 0
$("button").click(() => {
$("#count").text(++count)
})
```