Gathering detailed insights and metrics for @skeleton-elements/react
Gathering detailed insights and metrics for @skeleton-elements/react
Gathering detailed insights and metrics for @skeleton-elements/react
Gathering detailed insights and metrics for @skeleton-elements/react
skeleton-elements
Skeleton elements (aka UI Skeletons, Skeleton Screens, Ghost Elements) - UI for improved perceived performance
@progress/kendo-react-indicators
React Indicators offer an interface to represent a visual indication for their UI elements. KendoReact Indicators package
react-native-skeleton-elements
react-skeleton-blocks
React Skeleton UI components for loading elements
Skeleton elements - UI for improved perceived performance
npm install @skeleton-elements/react
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/react@2.0.0
Unpacked Size
50.96 kB
Size
14.64 kB
File Count
46
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/react --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/react/skeleton-elements.css';
Or it can be included for each component separately:
@skeleton-elements/react/skeleton-avatar.css
- Avatar component@skeleton-elements/react/skeleton-block.css
- Block component@skeleton-elements/react/skeleton-image.css
- Image component@skeleton-elements/react/skeleton-text.css
- Text component@skeleton-elements/react/skeleton-effects.css
- EffectsSCSS
styles are also included:
@skeleton-elements/react/skeleton-elements.scss
- All styles@skeleton-elements/react/skeleton-avatar.scss
- Avatar component@skeleton-elements/react/skeleton-block.scss
- Block component@skeleton-elements/react/skeleton-image.scss
- Image component@skeleton-elements/react/skeleton-text.scss
- Text component@skeleton-elements/react/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 with examples and API documentation.
1import React, { useState } from 'react'; 2 3// import Skeleton components 4import { SkeletonAvatar, SkeletonText } from '@skeleton-elements/react'; 5 6// import Skeleton styles 7import '@skeleton-elements/react/skeleton-elements.css'; 8 9const App = () => { 10 const [ loading, setLoading ] = useState(true); 11 // ... 12 return ( 13 <div id="app"> 14 ... 15 {loading && ( 16 <div className="user"> 17 <div className="user-avatar"> 18 <SkeletonAvatar effect="fade" size={120} /> 19 </div> 20 <div className="user-name"> 21 <SkeletonText effect="fade">John Doe</SkeletonText> 22 </div> 23 </div> 24 )} 25 ... 26 </div> 27 ); 28} 29 30export default App;
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