libdom

0.5.7 • Public • Published

libdom

Lean Browser Library for typical DOM operations tested to run in IE8 up to modern browsers. This will be used to further create DOM UI libraries for browsers in the future.

Installation

This library is packaged by npm, so it can be installed by running code below.

npm install libdom --save

Webpack and other CommonJS setup

libdom can be required directly within webpack or browserify.

var libdom = require("libdom");
 
libdom.on(global.document,
        "load",
        function (event) {
            console.log('okay, got it! ', event.target);
        });

ES-2015 import

With es6 import enabled using babel, you can also import libdom module.

// default
import libdom from "libdom";
 
// tree shaking
import { on, addClass } from "libdom";

Directly embed script in HTML

libdom can embedded in HTML <script> tag. This requires preloading of libcore module.

<!doctype >
 
<html>
<head>
    <title>Test Libdom</title>
</head>
<body>
    <script src="node_modules/libcore/dist/libcore.min.js" type="text/javascript" charset="utf-8"></script> 
    <script src="node_modules/libdom/dist/libdom.min.js" type="text/javascript" charset="utf-8"></script> 
    <script type="text/javascript" charset="utf-8">
    console.log("libdom object: ", libdom);
    </script> 
</body>
</html>

Non-minified version of libdom is located in node_modules/libdom/dist/libdom.js.

Module API

Please refer to API Documentation for more information on Browser DOM helpers.

License

This Project is fully Open Source MIT licensed.

Dependents (1)

Package Sidebar

Install

npm i libdom

Weekly Downloads

10

Version

0.5.7

License

MIT

Last publish

Collaborators

  • diko316