
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
Utility to create DOM Element
npm install crtelt
# or
yarn add crtelt
Import with script tag
<script src="node_modules/crtelt/dist/index.min.js"></script>
<!-- or -->
<script src="https://cdn.jsdelivr.net/npm/crtelt@latest/dist/index.min.js"></script>
Import as module
import crtElt from "crtelt";
crtElt(nodeName, attributes, children);
Name of the tag. Use fragment to create document fragment.
Attributes to set.
events:
Object of events.
Pass event listener or array of event listener and options.
Check examples for details.
dataset:
Object of dataset.
style:
Object of styles.
You can use CSS variables too.
class:
String of element's class names.
You can use both className and class to set class names.
And all the other attributes of the element
You can pass string, document fragment, element, undefined, null.
It'll be appended if it's truthy.
const Element = crtElt(
"div",
{ className: "element" },
crtElt("span", { className: "element__child" }, "foo"),
crtElt("span", { className: "element__child" }, "bar")
);
function Textarea() {
return crtElt("textarea", {
className: "textarea",
placeholder: "Type some text",
ariaLabel: "Type some text",
rows: 2,
events: {
change({ target }) {
if (!(target instanceof HTMLTextAreaElement)) {
return;
}
console.log(target.value);
},
click: [
() => {
console.log("You clicked it");
},
{ once: true },
],
},
});
}
const Element = crtElt(
"div",
{
className: "element",
style: {
width: `${Math.log(window.innerWidth)}px`,
"--color": `${getRandomHexColor()}`,
},
},
crtElt("span", { className: "element__child" }, "foo"),
crtElt("span", { className: "element__child" }, "bar")
);
FAQs
Utility to create DOM Element
We found that crtelt demonstrated a not healthy version release cadence and project activity because the last version was released 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
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.