0.6.1 • Published 4 years ago

@pikadun/dom v0.6.1

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

Dom

A DOM tree implement with Typescript!

Feature

  • Provide the same API like the browser.
  • Small and lightweight.

Example

import { Document } from '@pikadun/dom';
const document = new Document();
const div = document.createElement('div');
div.setAttribute('class','test');
document.appendChild(div);

// <div class="test"></div>
document.toString();

Installation

npm install @pikadun/dom

Document

More document can be found on https://github.com/pikadun/dom/wiki

0.6.1

4 years ago

0.6.0

4 years ago

0.5.0

4 years ago

0.4.0

4 years ago

0.3.1

4 years ago

0.3.0

4 years ago

0.2.2

4 years ago

0.2.1

4 years ago

0.2.0

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago