dolla
v1.3.2
Published
A light set of helpers for building and manipulating DOM
Downloads
21
Readme
Installation
npm install dolla
Usage
Import only the methods you use.
import {createElement} from 'dolla';
document.body.append(createElement('div', {
class: 'text-bold',
style: 'text-decoration: underline',
content: ['Hello World']
}))
Documentation
Checkout details about each method on dollajs.com
Development
Build
npm run build
Test
npm link # to make global reference
npm link dolla # to link global reference
npm run test
Release
npm publish