Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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)
})
```