1.1.0 • Published 3 years ago

@rpearce/ts-dom-fns v1.1.0

Weekly downloads
291
License
BSD-3-Clause
Repository
github
Last release
3 years ago

ts-dom-fns

npm version npm downloads bundlephobia size

TypeScript DOM Helper Functions

Why?

JS object properties are not minified/mangled by default (and should not be) with tools like terser, so your JS bundles can have multiple appearances of DOM methods like .addEventListener, .parentNode, .focus, .appendChild, and more, and this can needlessly increase your bundle sizes. On the other hand, variables and functions are reduced to names like a, b, and ab, and this can greatly reduce the size of your web page.

With this little library, we leverage the ability for variables and functions to be mangled by wrapping common DOM methods and properties in functions so that we only have methods like .addEventListener show up once in our bundled JS output.

Also of note is that the functions' arguments are ordered from least likely to change to most likely to change ("functional style") so that you can partially apply arguments to functions via something like .bind() and get greater code reuse. There are very few objects accepted in order to keep build sizes as small as possible.

Installation

λ npm i @rpearce/ts-dom-fns

or

λ yarn add @rpearce/ts-dom-fns

The Helper Functions

Usage

Use only the functions you want to, and the rest should get tree-shaken out by your build tool.

import { addEventListener, removeEventListener } from '@rpearce/ts-dom-fns'

// ...

const CLICK = 'click'
const cb = (e) => { console.log('Clicked!', e) }

addEventListener(CLICK, cb, document)

// ...

removeEventListener(CLICK, cb, document)
1.1.0

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

4 years ago

0.5.0

4 years ago

0.4.0

4 years ago

0.3.0

4 years ago

0.3.1

4 years ago

0.2.1

4 years ago

0.2.0

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago