Update module list in readme
This commit is contained in:
parent
1b1351fffa
commit
e99df6b58f
1 changed files with 16 additions and 8 deletions
24
readme.md
24
readme.md
|
@ -8,10 +8,11 @@ copy-pasting around more often than necessary.
|
||||||
|
|
||||||
So what does it all do?
|
So what does it all do?
|
||||||
|
|
||||||
## Better
|
## Skooma
|
||||||
|
|
||||||
an "improved" version of the builtin HTMLElement that's hopefully a lot easier
|
Generate HTML and SVG DOM nodes more easily and do stuff with them. Feels like
|
||||||
to build actual things with. It's really just another utility layer.
|
an in-between of using a templating language and writing lisp code. Overall very
|
||||||
|
recommendable.
|
||||||
|
|
||||||
## Element
|
## Element
|
||||||
|
|
||||||
|
@ -32,11 +33,9 @@ changed.
|
||||||
|
|
||||||
Simple messaging helper that uses microtasks by default.
|
Simple messaging helper that uses microtasks by default.
|
||||||
|
|
||||||
## Skooma
|
## Debounce
|
||||||
|
|
||||||
Generate HTML and SVG DOM nodes more easily and do stuff with them. Feels like
|
Debouncing wrapper for functions to avoid repeated execution of expensive code.
|
||||||
an in-between of using a templating language and writing lisp code. Overall very
|
|
||||||
recommendable.
|
|
||||||
|
|
||||||
## Template
|
## Template
|
||||||
|
|
||||||
|
@ -47,4 +46,13 @@ like 5 lines or so.
|
||||||
|
|
||||||
Currently a sngle class `ObjectStorage` implementing the API of the Storage
|
Currently a sngle class `ObjectStorage` implementing the API of the Storage
|
||||||
class using a plain JS Map as backend. This is mostly meant as a page-local
|
class using a plain JS Map as backend. This is mostly meant as a page-local
|
||||||
fallback to LocalStorage and SessionStorage
|
fallback to LocalStorage and SessionStorage.
|
||||||
|
|
||||||
|
## Use
|
||||||
|
|
||||||
|
Allows you to apply code to HTML elements by looking for a `use` attribute and
|
||||||
|
running it as code on the element.
|
||||||
|
|
||||||
|
## Pqueue
|
||||||
|
|
||||||
|
Ensures in-order promise resolution and optionally limits parallel execution.
|
||||||
|
|
Loading…
Reference in a new issue