{"id":16454367,"url":"https://github.com/jbkuczma/react-skeletons","last_synced_at":"2026-04-14T15:31:48.509Z","repository":{"id":57344856,"uuid":"195249194","full_name":"jbkuczma/react-skeletons","owner":"jbkuczma","description":"Lightweight package for creating beautiful loading skeletons for your app","archived":false,"fork":false,"pushed_at":"2019-08-04T16:01:51.000Z","size":20,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"develop","last_synced_at":"2026-03-24T04:31:39.596Z","etag":null,"topics":["loading-animations","react","react-skeleton"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jbkuczma.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-07-04T13:42:20.000Z","updated_at":"2019-08-04T15:57:23.000Z","dependencies_parsed_at":"2022-09-12T06:30:44.980Z","dependency_job_id":null,"html_url":"https://github.com/jbkuczma/react-skeletons","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/jbkuczma/react-skeletons","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jbkuczma%2Freact-skeletons","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jbkuczma%2Freact-skeletons/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jbkuczma%2Freact-skeletons/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jbkuczma%2Freact-skeletons/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jbkuczma","download_url":"https://codeload.github.com/jbkuczma/react-skeletons/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jbkuczma%2Freact-skeletons/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31803200,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T11:13:53.975Z","status":"ssl_error","status_checked_at":"2026-04-14T11:13:53.299Z","response_time":153,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["loading-animations","react","react-skeleton"],"created_at":"2024-10-11T10:18:47.792Z","updated_at":"2026-04-14T15:31:48.488Z","avatar_url":"https://github.com/jbkuczma.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![minifed size](https://img.shields.io/bundlephobia/min/react-skeletons.svg?style=flat-square)]()\n[![minzip size](https://img.shields.io/bundlephobia/minzip/react-skeletons.svg?style=flat-square)]()\n[![npm version](https://badge.fury.io/js/react-skeletons.svg)]()\n\n# react-skeletons\nCreate beautiful and animated loading skeletons as your views load\n\n## Installation\n\n```bash\n  npm install --save react-skeletons\n```\n\n## Basic usage\n\n```jsx\n  import Skeleton from 'react-skeletons';\n\n  \u003cSkeleton count={4} /\u003e\n```\n\n## Advanced usage\n\n```jsx\n  import React from 'react';\n  import Skeleton, { Box, Line } from 'react-skeletons;\n\n  const Grid = ({ ...props }) =\u003e (\n    \u003cdiv style={{\n      display: 'grid',\n      gridTemplateColumns: 'repeat(3, 200px)',\n      gridColumnGap: 16\n    }}\u003e\n      {props.children}\n    \u003c/div\u003e\n  );\n\n  \u003cSkeletonTheme color='#FF4E50' highlight='#F9D423'\u003e\n    \u003cGrid\u003e\n      {[0, 1, 2].map((_, index) =\u003e\n        \u003cdiv key={index} style={{ width: 210 }}\u003e\n          \u003cBox width={210} height={120} /\u003e\n          \u003cSkeleton count={2} /\u003e\n        \u003c/div\u003e\n      )}\n    \u003c/Grid\u003e\n  \u003c/SkeletonTheme\u003e\n```\n\nView the storybook to see other possible configurations\n\n```bash\n  npm run storybook\n```\n\n## Components\n\n### Skeleton\n| Prop | Type | Description | Default |\n|------|------|-------------|---------|\n| count | Number | How many lines should be rendered | 3 |\n| animated | Boolean | Should the skeleton be animated | true |\n\n### Line\n| Prop | Type | Description | Default |\n|------|------|-------------|---------|\n| animated | Boolean | Should the line be animated | true |\n\n### Box\n| Prop | Type | Description | Default |\n|------|------|-------------|---------|\n| animated | Boolean | Should the line be animated | true |\n| auto | Boolean | Fill container; set's `width` and `height` to `100%` | false |\n| height | Number | Height of box (in px) | 72 |\n| width | Number | Width of box (in px) | 72 |\n\n### SkeletonTheme\n| Prop | Type | Description | Default |\n|------|------|-------------|---------|\n| color | String | Background color | #F2F2F2 |\n| highlight | String | Primary color | #E3E3E3 |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjbkuczma%2Freact-skeletons","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjbkuczma%2Freact-skeletons","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjbkuczma%2Freact-skeletons/lists"}