Skip to content

lucka-me/eli

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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);