Tiny DOM-element creation utility
  • JavaScript 100%
Find a file
2026-04-18 07:29:35 +02:00
.gitignore Initial add 2020-03-12 15:06:03 +01:00
index.d.ts Try to return the appropriate element subtype via HTMLElementTagNameMap 2026-04-18 07:29:35 +02:00
index.js Include CommonJS type declarations 2023-05-17 14:30:36 +02:00
LICENSE Update maintainer email 2023-01-24 08:45:16 +01:00
package.json Update repository link 2026-03-18 11:07:49 +01:00
README.md Fix issue with array as second argument 2020-03-13 07:49:56 +01:00
rollup.config.js Include CommonJS type declarations 2023-05-17 14:30:36 +02:00

CRELT

Tiny DOM-element creation utility. Exports a single (default) value, which is a function that you call with:

  • A tag name string or DOM element.

  • Optionally an attribute object mapping names to values. When the values are strings, they are added to the element with setAttribute. When they have another type, they are assigned as regular properties (mostly useful for event handlers via onclick and such). When an attribute's value is null or undefined, it is not assigned.

  • Any number of children, which may be null (ignored), strings (added as text nodes), DOM nodes (added), or arrays (each element is added separately).

The function returns a DOM element.

License

This software is licensed under an MIT license.