Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/wrumsby/create-element

Create DOM elements with a succinct syntax.
https://github.com/wrumsby/create-element

Last synced: 6 days ago
JSON representation

Create DOM elements with a succinct syntax.

Awesome Lists containing this project

README

        

# create-element

[![Build Status](https://travis-ci.org/wrumsby/create-element.svg?branch=master)](https://travis-ci.org/wrumsby/create-element)

## Installation

### Bower

```bash
bower install create-element
```

You can use the [resolve-bower-module](https://www.npmjs.com/package/babel-plugin-resolve-bower-module) Babel plugin to resolve modules that are imported with Bower.

## Usage

```js
import createElement from 'create-element';

const frag = document.createDocumentFragment();

frag.appendChild(createElement('div#container')
.appendChild(createElement('div.grid')));

document.body.appendChild(frag);

console.log(document.body.innerHTML); //


```

## Related Projects

[dom-builder](https://github.com/wrumsby/dom-builder)