
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.
slim-element
Advanced tools
A tiny base class for building web components.
It enables some super light abstractions over vanilla web component authoring, catered to my personal preferences.
npm install slim-element
import { SlimElement } from 'slim-element';
class SimpleGreeting extends SlimElement {
// Component styles can be optionally defined as a static property
// If constructable style sheets are supported they will be used
// otherwise the styles will be placed inside a <style> tag
static styles = `
h1 { color: teal; }
`;
// A constructor can be optionally defined
// If it is defined make sure the first line is a call to super()
// A connectedCallback can be optionally defined
// If it is defined make sure the first line is a call to super.connectedCallback()
// A render method is required for defining component markup
render() {
return `<h1>Hey there!</h1>`;
}
}
customElements.define('simple-greeting', SimpleGreeting);
See an example of SlimElement in action in simple-greeting.js or counter-button.js.
This is licensed under MIT. Feel free to use, remix, and adapt the code found this repo in your own projects.
FAQs
A tiny base class for building web components.
We found that slim-element 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.