Gathering detailed insights and metrics for @skeleton-elements/vue
Gathering detailed insights and metrics for @skeleton-elements/vue
Gathering detailed insights and metrics for @skeleton-elements/vue
Gathering detailed insights and metrics for @skeleton-elements/vue
Skeleton elements - UI for improved perceived performance
npm install @skeleton-elements/vue
Typescript
Module System
Node Version
NPM Version
JavaScript (51.28%)
Svelte (16.71%)
TypeScript (16.44%)
SCSS (10.34%)
Python (5.09%)
Shell (0.13%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
155 Stars
139 Commits
12 Forks
5 Watchers
21 Branches
3 Contributors
Updated on May 29, 2025
Latest Version
2.0.0
Package Id
@skeleton-elements/vue@2.0.0
Unpacked Size
39.46 kB
Size
13.22 kB
File Count
38
NPM Version
6.13.7
Node Version
13.10.1
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
No dependencies detected.
Skeleton elements (aka UI Skeletons, Skeleton Screens, Ghost Elements) - UI for improved perceived performance
See the documentation with examples and API documentation.
With npm:
npm i @skeleton-elements/vue --save
Skeleton Elements requires stylesheet to be included:
<link rel="stylesheet" href="path/to/skeleton-elements.css>
Wiht bunder (like webpack) you can import syles directly from JavaScript:
import '@skeleton-elements/vue/skeleton-elements.css';
Or it can be included for each component separately:
@skeleton-elements/vue/skeleton-avatar.css
- Avatar component@skeleton-elements/vue/skeleton-block.css
- Block component@skeleton-elements/vue/skeleton-image.css
- Image component@skeleton-elements/vue/skeleton-text.css
- Text component@skeleton-elements/vue/skeleton-effects.css
- EffectsSCSS
styles are also included:
@skeleton-elements/vue/skeleton-elements.scss
- All styles@skeleton-elements/vue/skeleton-avatar.scss
- Avatar component@skeleton-elements/vue/skeleton-block.scss
- Block component@skeleton-elements/vue/skeleton-image.scss
- Image component@skeleton-elements/vue/skeleton-text.scss
- Text component@skeleton-elements/vue/skeleton-effects.scss
- EffectsThe following components are available:
SkeletonAvatar
- responsive avatar placeholderSkeletonBlock
- block placeholderSkeletonImage
- responsive image placeholderSkeletonText
- skeleton text (uses custom Skeleton font)See the documentation for more examples and API documentation.
1<template> 2 <div id="app"> 3 ... 4 <div v-if="loading" class="user"> 5 <div class="user-avatar"> 6 <skeleton-avatar effect="fade" :size="120" /> 7 </div> 8 <div class="user-name"> 9 <skeleton-text effect="fade">John Doe</skeleton-text> 10 </div> 11 </div> 12 ... 13 </div> 14</template> 15<script> 16 // import Skeleton components 17 import { SkeletonAvatar, SkeletonText } from '@skeleton-elements/vue'; 18 19 // import Skeleton styles 20 import '@skeleton-elements/vue/skeleton-elements.css'; 21 22 export default { 23 // register components 24 components: { 25 SkeletonAvatar, 26 SkeletonText, 27 }, 28 data() { 29 return { 30 loading: true, 31 }; 32 }, 33 }; 34</script>
Yes please! See the contributing guidelines for details.
This project is licensed under the terms of the MIT license.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 2/24 approved changesets -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
81 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More