Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 676 Bytes

README.md

File metadata and controls

28 lines (18 loc) · 676 Bytes

Eli

CI Status
NPM version GitHub

Elegant way to build elements.

Usage

Install with npm,

$ npm install @lucka-labs/eli -D

Then build elements with functioning autocompelete:

@import { eli } from '@lucka-labs/eli';

const box = eli('div', {
    innerHTML: 'Hello World!'
});

document.body.append(box);