
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
ndf-elements
Advanced tools
A collection of useful custom elements (Web Components).
<my-page>, <my-nav> which are probably not for production !!<template> in .tpl.html files - DEPRECATED),<template>, except <my-map> (Leaflet.js)semistandard linting, etc.About Web Components.
See also: web-vitals-element.
Available on Unpkg and Skypack CDNs. Note, templates can't currently be accessed from Skypack.
<my-skip-link></my-skip-link>
<my-options template-host="unpkg.com"></my-options>
<script src="https://cdn.skypack.dev/ndf-elements?min"
type="module" async crossorigin
></script>
Dynamically import just the custom elements you want, using an importmap.
HTML:
<my-live-bridge event="click" message="Hello world!">
<p aria-live="polite"></p>
<p><button>Click me!</button></p>
</my-live-bridge>
<script type="importmap">
{
"imports": {
"my-elements": "https://unpkg.com/ndf-elements@^1/i.js"
},
"myElements": {
"use": [ "my-live-bridge", "my-dev-warning" ]
}
}
</script>
<script type="module"> import 'my-elements'; </script>
Dynamically import just the custom elements you want.
import customImport from 'https://unpkg.com/ndf-elements@^1/custom.js';
const MOD = await customImport('my-star-rating, my-skip-link');
Then:
<my-skip-link></my-skip-link>
<my-star-rating></my-star-rating>
FAQs
My collection of useful custom elements.
The npm package ndf-elements receives a total of 3 weekly downloads. As such, ndf-elements popularity was classified as not popular.
We found that ndf-elements 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

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.