{"id":46178414,"url":"https://github.com/hyodotdev/kstyled","last_synced_at":"2026-03-02T19:36:18.020Z","repository":{"id":321620514,"uuid":"1085657858","full_name":"hyodotdev/kstyled","owner":"hyodotdev","description":"Compile-time styled-components for React Native • Zero runtime cost • Full TypeScript support • Theme-aware","archived":false,"fork":false,"pushed_at":"2025-11-17T14:12:55.000Z","size":4096,"stargazers_count":12,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-11-27T21:36:27.505Z","etag":null,"topics":["babel-plugin","css","css-in-js","react-native"],"latest_commit_sha":null,"homepage":"","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/hyodotdev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"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":"2025-10-29T10:40:32.000Z","updated_at":"2025-11-20T02:59:09.000Z","dependencies_parsed_at":"2025-10-30T17:27:48.359Z","dependency_job_id":"b5de1ecc-4502-4d5e-bae6-bc82fd314f49","html_url":"https://github.com/hyodotdev/kstyled","commit_stats":null,"previous_names":["hyodotdev/kstyled"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/hyodotdev/kstyled","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hyodotdev%2Fkstyled","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hyodotdev%2Fkstyled/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hyodotdev%2Fkstyled/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hyodotdev%2Fkstyled/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hyodotdev","download_url":"https://codeload.github.com/hyodotdev/kstyled/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hyodotdev%2Fkstyled/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30016525,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-02T17:00:27.440Z","status":"ssl_error","status_checked_at":"2026-03-02T17:00:03.402Z","response_time":60,"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":["babel-plugin","css","css-in-js","react-native"],"created_at":"2026-03-02T19:36:16.969Z","updated_at":"2026-03-02T19:36:18.008Z","avatar_url":"https://github.com/hyodotdev.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# kstyled\n\n[![CI](https://github.com/hyodotdev/kstyled/actions/workflows/ci.yml/badge.svg)](https://github.com/hyodotdev/kstyled/actions/workflows/ci.yml)\n[![Tests](https://github.com/hyodotdev/kstyled/actions/workflows/test.yml/badge.svg)](https://github.com/hyodotdev/kstyled/actions/workflows/test.yml)\n[![npm version](https://img.shields.io/npm/v/kstyled.svg)](https://www.npmjs.com/package/kstyled)\n[![npm downloads](https://img.shields.io/npm/dm/kstyled.svg)](https://www.npmjs.com/package/kstyled)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n\n⚡️ **Compile-time CSS-in-JS for React Native** • styled-components API with zero runtime overhead\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"packages/docs/static/img/k-dev.png\" alt=\"K-Dev Demon Styles\" max-width=\"1200\" /\u003e\n\u003c/p\u003e\n\n## Quick Start\n\n```bash\npnpm add kstyled\npnpm add -D babel-plugin-kstyled\n```\n\n```javascript\n// babel.config.js\nmodule.exports = {\n  presets: ['babel-preset-expo'],\n  plugins: ['babel-plugin-kstyled'],\n};\n```\n\n```tsx\nimport { styled } from 'kstyled';\nimport { View, Text } from 'react-native';\n\nconst Container = styled(View)`\n  flex: 1;\n  background-color: #f0f0f0;\n`;\n\nconst Title = styled(Text)\u003c{ $primary?: boolean }\u003e`\n  font-size: 24px;\n  color: ${p =\u003e p.$primary ? '#007AFF' : '#000'};\n`;\n\nexport default function App() {\n  return (\n    \u003cContainer\u003e\n      \u003cTitle $primary\u003eHello kstyled!\u003c/Title\u003e\n    \u003c/Container\u003e\n  );\n}\n```\n\n## Features\n\n- ⚡️ **Zero runtime** - Styles compiled to `StyleSheet.create` at build time\n- 🎨 **Familiar API** - styled-components syntax you already know\n- ✨ **Flexible syntax** - Supports `${16}px`, `${'16px'}`, and `${16}` (unlike styled-components/emotion)\n- 🎭 **Theme support** - Built-in ThemeProvider with TypeScript\n- 💪 **Full TypeScript** - Complete type inference\n- 📦 **Tiny bundle** - Minimal runtime code\n\n## Documentation\n\nSee the [full documentation](https://hyodotdev.github.io/kstyled) for:\n- Getting Started guides\n- Styling patterns (static, dynamic, theming)\n- API reference\n- Performance benchmarks\n\n## License\n\nMIT © [hyodotdev](https://hyo.dev)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhyodotdev%2Fkstyled","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhyodotdev%2Fkstyled","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhyodotdev%2Fkstyled/lists"}