jazzypants1989 / jessquery

Modern JavaScript is pretty good, but typing `document.querySelector()` is a pain. This is a tiny library that makes DOM manipulation easy. jQuery is around 30kb, while this is only around 3.5kb. Lots of JSDoc comments so it's self-documenting and works great with TypeScript.
119 stars 1 forks source link

Changed everything to use a proxy #1

Closed jazzypants1989 closed 1 year ago

jazzypants1989 commented 1 year ago

The idea is that you can still access all the normal DOM properties... This might be over-engineering. I dunno. I'm gonna do another one with prototype hacking and decide if I like that better.

stackblitz[bot] commented 1 year ago

Review PR in StackBlitz Codeflow Run & review this pull request in StackBlitz Codeflow.

jazzypants1989 commented 1 year ago

LGTM!!!

This would almost certainly cripple a large application, but who said that my little experiments had to be performant?