# hyperhtml-majinbuu
**Repository Path**: mirrors_WebReflection/hyperhtml-majinbuu
## Basic Information
- **Project Name**: hyperhtml-majinbuu
- **Description**: The majinbuu based engine
- **Primary Language**: Unknown
- **License**: ISC
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2020-08-19
- **Last Updated**: 2026-05-23
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# hyperhtml-majinbuu - deprecated
[](https://github.com/WebReflection/donate)
[](https://coveralls.io/github/WebReflection/hyperhtml-majinbuu?branch=master)
[](https://travis-ci.org/WebReflection/hyperhtml-majinbuu)
[](https://opensource.org/licenses/ISC)
[](https://greenkeeper.io/)
# DEPRECATED
The latest version of [hyperHTML](https://github.com/WebReflection/hyperHTML) removed superfluous complexity.
If you setup an engine in the latest hyperHTML you will not see any difference in performance.
- - -
The [majinbuu](https://github.com/WebReflection/majinbuu) based DOM engine
```js
// ESM example, import hyperHTML and this project
import hyper from 'https://unpkg.com/hyperhtml@latest/esm/index.js';
import hyperbuu from 'https://unpkg.com/hyperhtml-majinbuu@latest/esm/index.js';
// set this project as hyperHTML engine
hyper.engine = hyperbuu;
// configure eventually MAX_LIST_SIZE
// to fallback, when too big,
// to the default hyperHTML engine
hyper.engine.MAX_LIST_SIZE = 500;
// by default this is 1000
```
You can also add the engine simply including `https://unpkg.com/hyperhtml-majinbuu@latest/min.js` script after `https://unpkg.com/hyperhtml@latest/min.js`.
You can use CommonJS too (based on `.default` convention):
```js
const hyper = require('hyperhtml').default;
hyper.engine = require('hyperhtml-majinbuu').default;
```