Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
jsx-dom-runtime
Advanced tools
A tiny in 500 bytes library to JSX syntax templates for DOM.
npm i jsx-dom-runtime
# or
yarn add jsx-dom-runtime
.babelrc
{
"presets": [
"jsx-dom-runtime/babel-preset"
]
}
import { createRef } from 'jsx-dom-runtime';
const App = () => {
const List = createRef();
const addItem = () => {
// append to the end of the list
<List.current>
<li>New Item</li>
</List.current>
};
return (
<>
<button type="button" onClick={addItem}>
Add Item
</button>
<ul ref={List} />
</>
);
};
// append to the end of the head
<document.head>
<link rel="stylesheet" href="/style.css" />
</document.head>;
// append to the end the the body
<document.body id="root">
<App />
</document.body>;
import { createRef } from 'jsx-dom-runtime';
let i = 0;
const ref = createRef();
<document.body>
<p ref={ref}>{i}</p>
<button type="button" onClick={() => {
ref.current.textContent = ++i;
}}>
+ 1
</button>
</document.body>;
<document.body>
<input ref={(node) => {
setTimeout(() => node.focus(), 100);
}} />
</document.body>;
import { bindRef, createRef } from 'jsx-dom-runtime';
const ref = createRef();
const callback = (node) => {
console.log(ref.current === node); // true
};
<document.body>
<p ref={bindRef(ref, callback /* ... */)} />
</document.body>;
import { parseFromString } from 'jsx-dom-runtime';
const svg = parseFromString(
`<svg width="24" height="24" aria-hidden="true">
<path d="M12 12V6h-1v6H5v1h6v6h1v-6h6v-1z"/>
</svg>`
);
<document.body>
{svg}
</document.body>;
FAQs
A tiny in 500 bytes library to JSX syntax templates for DOM. Support HTML, SVG and MathML tags
The npm package jsx-dom-runtime receives a total of 107 weekly downloads. As such, jsx-dom-runtime popularity was classified as not popular.
We found that jsx-dom-runtime demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.