
Security News
NIST Officially Stops Enriching Most CVEs as Vulnerability Volume Skyrockets
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.
alpinejs-skeleton
Advanced tools
Adding reactive skeleton to your project without writing additional style directive or adding more html to your project
A lightweight Alpine.js plugin that adds a skeleton loading effect (pulse animation) to elements while data is being fetched or rendered.
It mimics Tailwind’s animate-pulse using pure JavaScript and inline styles.
<script
defer
src="https://unpkg.com/alpinejs-skeleton@latest/dist/cdn.min.js"
></script>
<script defer src="https://unpkg.com/alpinejs@latest/dist/cdn.min.js"></script>
npm install -D alpinejs-skeleton
yarn add -D alpinejs-skeleton
import Alpine from 'alpinejs'
import skeleton from 'alpinejs-skeleton'
Alpine.plugin(skeleton)
Alpine.start()
<div x-data="{ loaded: true }">
<div
x-skeleton="loaded"
style="width:200px;height:20px;border-radius:4px;"
></div>
<template x-if="loaded">
<p>Content loaded successfully.</p>
</template>
<button @click="loaded = !loaded">Toggle Loaded</button>
</div>
When loaded is true, the gray pulsing skeleton appears. When loaded becomes false, the animation and background are removed.
FAQs
Adding reactive skeleton to your project without writing additional style directive or adding more html to your project
The npm package alpinejs-skeleton receives a total of 1 weekly downloads. As such, alpinejs-skeleton popularity was classified as not popular.
We found that alpinejs-skeleton 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
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.

Security News
Socket CEO Feross Aboukhadijeh joins 10 Minutes or Less, a podcast by Ali Rohde, to discuss the recent surge in open source supply chain attacks.