Gathering detailed insights and metrics for react-skeleton-screen
Gathering detailed insights and metrics for react-skeleton-screen
Gathering detailed insights and metrics for react-skeleton-screen
Gathering detailed insights and metrics for react-skeleton-screen
skeleton-screen-react
a powerful and lightweight skeleton screen component based on React.
@blaze-react/skeleton
Custom skeleton loading screen tailored for blaze react components
skeleton-screen
Another react skeleton screen component
loadease-v2
A customizable loading component for React
npm install react-skeleton-screen
Typescript
Module System
Node Version
NPM Version
JavaScript (95.02%)
CSS (4.98%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
4 Stars
16 Commits
1 Forks
1 Watchers
1 Branches
1 Contributors
Updated on May 17, 2019
Latest Version
0.0.6
Package Id
react-skeleton-screen@0.0.6
Size
10.99 kB
NPM Version
5.5.1
Node Version
8.1.3
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
1
1
21
react-skeleton-screen
is essentially a blank
version of a page into which information is gradually loaded.
Skeleton screen | Loaded screen |
---|---|
![]() | ![]() |
Using yarn:
$ yarn add react-skeleton-screen
Then, use as you would anything else:
1// using ES6 modules 2import { Skeleton } from 'react-skeleton-screen' 3 4// using CommonJS modules 5var Skeleton = require('react-skeleton-screen').Skeleton
1import React from 'react' 2import { Skeleton } from 'react-skeleton-screen' 3import 'react-skeleton-screen/build/skeleton.css' 4// using scss 5//import 'react-skeleton-screen/scss/Skeleton.scss' 6 7const App = ({ isLoading }) => ( 8 isLoading 9 ? <div> 10 <Skeleton width="160px" height="30px" /> 11 <Skeleton width="70%" height="25px" marginLeft="30px" /> 12 <Skeleton width="60%" height="25px" marginLeft="30px" /> 13 <Skeleton width="110px" height="30px" /> 14 <Skeleton width="55%" height="25px" marginLeft="30px" /> 15 <Skeleton width="140px" height="30px" /> 16 <Skeleton width="55%" height="25px" marginLeft="30px" /> 17 <Skeleton width="65%" height="25px" marginLeft="30px" /> 18 <Skeleton width="90px" height="30px" /> 19 <Skeleton width="80%" height="25px" marginLeft="30px" /> 20 <Skeleton width="65%" height="25px" marginLeft="30px" /> 21 </div> 22 : <div>Your app has been loaded!</div> 23) 24 25export default App
Prop | Type | Default | Description |
---|---|---|---|
width | string | 100% | The width of the Skeleton. Eg: 100px or 20% or 10em |
height | string | 100% | The height of the Skeleton. Eg: 40px |
marginTop | string | 0 | The margin-top of the Skeleton. Eg: 5px |
marginRight | string | 0 | The margin-right of the Skeleton. Eg: 5px |
marginBottom | string | 0 | The margin-bottom of the Skeleton. Eg: 10px |
marginLeft | string | 0 | The margin-left of the Skeleton. Eg: 30px |
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
no SAST tool detected
Details
Reason
Found 0/16 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- 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
86 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