About dombili
|\__.__/|
) (
=\ /= .
| )=====( * '
| / \ * *
| / dombili \ + '*
* \ /
_/\_/\_/\_, ,_/_/\_/\_/\_/\_/\_/\_/\_/\_/\_
dombili
is a light,
zero-dependency wrapper around modern browser APIs.
He was also a famous cat, apparently.
) ) This project is a part of the
( ( “Byte-Sized JavaScript” videocasts.
) ) Watch “Byte-Sized JavaScript” at: https://bytesized.tv
(__( MIT licensed — See LICENSE.md
Send your comments, suggestions, and feedback to me@volkan.io
Byte-Sized What?!
Byte-Sized JavaScript.
It is a compilation of short monthly screencasts about JavaScript and related technologies.
Alpha-Stage Software Warning
dombili
is in its early stages; so anything in its implementation can change.
Until it hits version 1.0
, I’ll be liberally introducing breaking changes, please keep that in mind and fix your versions in your package.json or use a tool that does that for you (like yarn
) if you depend on dombili
in your apps.
Once dombili
hits version 1.0
, its API will stabilize, and the changes will be more backwards-compatible, as I will follow the Semantic Versioning 2.0.0 standards.
Tell Me More About dombili
It all started by realizing how bloated libraries can get when they have to support every arcane user agent that exists on the face of the earth.
The tendency to continue supporting old user agents has two consequences:
- Firstly, the library becomes less performant and heavier due to all the shims and checks.
- And more important than that, since people can use libraries and shims as “workarounds”, browser vendors can delay adding support to standard DOM, CSS, and HTML APIs. as long as they feel comfortable with.
Laziness in code is good; whereas laziness in supporting standard features is bad.
dombili
will always be forward-compatible.
We are intentionally not publishing shims and patches for non-standard functionality; however, this does not prevent you from adding them.
For example if you need window.fetch
functionality and your target browsers do not support it, you can use a shim to augment dombili
.
No Transpilation?! Srsly?
Unlike many libraries, dombili
does not generate a transpiled “dist” package.
Why?
Because Chrome and Safari already support EcmaScript Modules;
And the developer community is strongly positive about it.
It is likely that other vendors will follow the trend sooner or later;
however they will implement this feature faster if someone (or somecat)
moves the needled an inch forward, so to speak.
No reason to add an extra build step when browsers support EcmaScript modules.
That said, there’s nothing preventing you from configuring your bundler of choice to consume dombili
as an “EcmaScript module” and produce a backwards-compatible flavor of code you need.
For a typical webpack environment for instance, this will be similar to:
import * as dombili from 'dombili';
// Do stuff with dombili.
Just consume dombili
and let webpack
take care of the bundling details for you.
Webpack-specific Note
You will also need to tell webpack
to add dombili
to the bundle.
Here’s one way of doing it:
const { join } = require( 'fs' );
module.exports = {
…
module: {
rules: [ {
test: /\.js$/,
include: [
join( __dirname, 'src' ),
join( __dirname, 'node_modules/dombili' )
],
use: [ 'babel-loader' ]
} ]
},
…
};
Installation
Installing via npm:
npm install dombili
Installing via yarn:
yarn add dombili
Documentation and Examples
Here’s a quick sneak peek of how dombili
looks like:
import { json, $, el, after } from 'dombili';
const url = 'https://some.website/api/v1/data';
json( url ).then( ( res ) => {
const meaning = $( '#meaning-of-life' );
const fortyTwo = el( 'p', res.html );
after( fortyTwo, meaning );
} );
Visit…
https://bytesized.tv/dombili/global.html
…for further examples and documentation.
You can also execute…
npm run doc
… after forking dombili, to generate the documentation locally.
If you feel like there is a missing example, please file an issue,
or better, fork dombili and fix it.
Dependencies
For development, you’ll need a recent version of Node.JS and npm. You’ll also need to install yarn.
Also note that dombili
assumes the existence of a (modern) browser environment; it has never been tested in Node.JS, though in theory you should be able to use it with a decent virtual DOM emulator, or a headless browser. — So if you need that kind of a thing, go crazy, and let us know how it went four you :).
For production use, you might want to integrate dombili
to your favorite bundler. It should be straightforward to do so. — dombili
plays well with all the major build/bundling tools.
Wanna Help?
Any help is more than appreciated.
If you want to contribute to the source code, fork dombili and create a pull request.
In lieu of a formal style guide, take care to maintain the existing coding style.
If you want to report a bug; or share a comment or suggestion, file an issue.
I’ve Found a Bug; I Have an Idea
For bug reports and suggestions, please file an issue.
Contributing
Contributions are highly welcome.
Here are some extra information that might be helpful if you want to actively contribute to the project:
Important Files and Folders
./src/*
: The source files (which are also the distribution files)../.eslintrc
: eslint validation rules../CHANGELOG.md
: The change log../conf.json
: Configuration related to the documentation generator../LICENSE.md
: Boring copyright stuff../package.json
: The package descriptor../README.md
: This very page that you are looking at../yarn.lock
: The yarn lockfile.
Package Scripts
npm run doc
: Generates the documentation.npm run lint
: Lints the code.npm test
: Executes unit tests.yarn install
: Install the dependencies.
Contact Information
License
MIT-licensed. — See the license file for details.
Code of Conduct
We are committed to making participation in this project a harassment-free experience for everyone, regardless of the level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, religion, or nationality.
See the code of conduct for details.