{"id":45872294,"url":"https://github.com/laser-ui/laser-ui","last_synced_at":"2026-04-08T11:02:18.100Z","repository":{"id":193206183,"uuid":"688329339","full_name":"laser-ui/laser-ui","owner":"laser-ui","description":"Fast and Powerful React Components.","archived":false,"fork":false,"pushed_at":"2026-03-27T02:05:16.000Z","size":3435,"stargazers_count":21,"open_issues_count":6,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-27T13:19:05.518Z","etag":null,"topics":["component","laser-ui","react","react-component","react19","ui"],"latest_commit_sha":null,"homepage":"https://laser-ui.github.io/","language":"TypeScript","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/laser-ui.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-09-07T06:07:03.000Z","updated_at":"2026-03-27T02:05:21.000Z","dependencies_parsed_at":"2024-05-14T04:23:23.739Z","dependency_job_id":"3cf8ebc1-ff6c-43a4-816f-cee9cceb2e51","html_url":"https://github.com/laser-ui/laser-ui","commit_stats":null,"previous_names":["laser-ui/laser-ui"],"tags_count":56,"template":false,"template_full_name":null,"purl":"pkg:github/laser-ui/laser-ui","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/laser-ui%2Flaser-ui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/laser-ui%2Flaser-ui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/laser-ui%2Flaser-ui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/laser-ui%2Flaser-ui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/laser-ui","download_url":"https://codeload.github.com/laser-ui/laser-ui/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/laser-ui%2Flaser-ui/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31551891,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-08T10:21:54.569Z","status":"ssl_error","status_checked_at":"2026-04-08T10:21:38.171Z","response_time":54,"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":["component","laser-ui","react","react-component","react19","ui"],"created_at":"2026-02-27T10:31:17.953Z","updated_at":"2026-04-08T11:02:18.055Z","avatar_url":"https://github.com/laser-ui.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003ca href=\"//laser-ui.github.io/\" rel=\"noopener\" target=\"_blank\"\u003e\u003cimg width=\"150\" src=\"apps/site/public/logo.png\" alt=\"logo\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n\u003ch1 align=\"center\"\u003eLaser UI\u003c/h1\u003e\n\n\u003cdiv align=\"center\"\u003e\n\n\u003c!-- prettier-ignore-start --\u003e\n[![npm latest package](http://img.shields.io/npm/v/@laser-ui/components/latest.svg?style=flat-square)](https://www.npmjs.com/package/@laser-ui/components)\n[![npm bundle size](https://img.shields.io/bundlephobia/minzip/@laser-ui/components?style=flat-square)](https://bundlephobia.com/package/@laser-ui/components)\n[![gitHub workflow status](https://img.shields.io/github/actions/workflow/status/laser-ui/laser-ui/main.yml?branch=main\u0026style=flat-square)](https://github.com/laser-ui/laser-ui/actions/workflows/main.yml)\n\u003c!-- prettier-ignore-end --\u003e\n\n\u003c/div\u003e\n\n\u003cdiv align=\"center\"\u003e\n\nEnglish | [简体中文](README.zh-CN.md)\n\n\u003c/div\u003e\n\n## Installation\n\n```bash\nnpm install @laser-ui/components @laser-ui/hooks @laser-ui/themes @laser-ui/utils\n```\n\n## Getting Started\n\n```tsx\nimport type { LContextIn } from '@laser-ui/components/context';\n\nimport { ConfigProvider, Root } from '@laser-ui/components';\nimport { useMemo } from 'react';\n\nexport default function App() {\n  const lContext = useMemo\u003cLContextIn\u003e(\n    () =\u003e ({\n      layoutPageScrollEl: '#app-main',\n      layoutContentResizeEl: '#app-content',\n    }),\n    [],\n  );\n\n  return (\n    \u003cConfigProvider context={lContext}\u003e\n      \u003cRoot\u003e\n        \u003cmain id=\"app-main\" style={{ overflow: 'auto' }}\u003e\n          \u003csection id=\"app-content\" style={{ height: '200vh' }}\u003e\n            Some content...\n          \u003c/section\u003e\n        \u003c/main\u003e\n      \u003c/Root\u003e\n    \u003c/ConfigProvider\u003e\n  );\n}\n```\n\n## Links\n\n- [laser-admin.surge.sh](//laser-admin.surge.sh)\n\n## Contributing\n\nPlease read our [contributing guide](/CONTRIBUTING.md) first.\n\n## License\n\n[![gitHub license](https://img.shields.io/github/license/laser-ui/laser-ui?style=flat-square)](/LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flaser-ui%2Flaser-ui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flaser-ui%2Flaser-ui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flaser-ui%2Flaser-ui/lists"}