Use JSX for HTML elements.
Based on @gera2ld/jsx-dom.
This library is just a light wrapper around document.createElement
. So we can easily create DOM elements using JSX with the help of this library instead of writing tedious imperative code.
You should NOT use it when you use a library that has its own implementation of JSX, such as React, Vue, Svelte, SolidJS, etc. The JSX syntaxes are incompatible and using them together will cause unexpected issues.
You don't need it if you initialize a userscript project with generator-userscript, which uses solid-js.
However, you can still use methods like VM.h
directly without using JSX to make the code shorter.
First, include @violentmonkey/dom
as a dependency:
// ...
// @require https://cdn.jsdelivr.net/npm/@violentmonkey/dom@2
// ...
Then you can use VM.h
(similar to React.createElement
) and VM.m
(for mount
ing as DOM elements) directly.
There is also a VM.hm
for VM.h
plus VM.m
if you don't need SVG support and want to get rid of VM.m
.
const vdom = VM.h('div', {}, 'hello');
const el = VM.m(vdom); // -> HTMLDivElement
// or
const el = VM.hm('div', {}, 'hello'); // -> HTMLDivElement
document.body.appendChild(el);
Or use with JSX and bundlers, for example:
// .babelrc.js
{
plugins: [
// JSX
['@babel/plugin-transform-react-jsx', {
pragma: 'VM.h', // or 'VM.hm' if you don't need SVG support and want to get rid of 'VM.m'
pragmaFrag: 'VM.Fragment',
}],
],
}
// pragma: VM.h
document.body.appendChild(VM.m(<div>hello</div>));
// pragma: VM.hm
document.body.appendChild(<div>hello</div>);