Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Very simple DOM generator with types declaration.
document.createElement
and element.appendChild
!element.addEventListener
!dist/index.js 2.46 kB │ gzip: 0.96 kB │ map: 13.62 kB
# Via npm
npm install dom-plus
# Or pnpm
pnpm add dom-plus
# Yarn? sure
yarn add dom-plus
Then import it to your project.
// ESM
import { h } from 'dom-plus'
// CJS
const { h } = require('dom-plus')
<script src="https://unpkg.com/dom-plus"></script>
<script>
const { h } = window.DOMPlus
// ...
</script>
Or... Why not ESM?
import { h } from 'https://unpkg.com/dom-plus?module'
// ...
// step-1 - create element
const block = h('div', { class: 'foo', style: 'color: red' }, [
h('span', 'bar'),
'baz',
])
// step-2? - no more steps! It works as you expect!
console.info(block.outerHTML) // <div class="foo"><span>bar</span>baz</div>
Why not use CSS styles as an object?
const redBlock = h('div', { style: { color: 'red' } }, 'Hey, I am red!')
.$css({
backgroundColor: 'black',
})
.$css('font-size', '2em')
It's working! Even with the types!
const block = h('div', { class: ['foo', 'bar'] }, 'Hey, I have classes!')
.$addClass('baz')
.$removeClass('foo')
Needless to say, it's working too!!
const button = h(
'button',
{
onClick: () => {
alert('Hello, world!')
},
},
'Click me!'
)
const stop = button.$on('click', (e) => {
e.preventDefault()
e.stopPropagation()
alert('This alert will be shown only once!')
stop()
})
IT JUST WORKS!!!
So you can modify the element.
// From: <div id="some-element">Blah</div>
const block = h(
document.querySelector('#some-element'),
{ class: 'foo' },
'Hey, I am a block!'
)
block.$css('color', 'red').$addClass('bar')
// To: <div id="some-element" class="foo bar" style="color: red;">Hey, I am a block!</div>
Why are you still reading this?!! Just try it!!!!!
MIT License
Copyright (c) 2023-present dragon-fish
FAQs
Very simple DOM generator with types declaration
We found that dom-plus demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.