{"id":16114706,"url":"https://github.com/solarliner/preact-bulma","last_synced_at":"2025-08-12T18:13:57.822Z","repository":{"id":31394330,"uuid":"149120016","full_name":"SolarLiner/preact-bulma","owner":"SolarLiner","description":"Preact components for the Bulma CSS project.","archived":false,"fork":false,"pushed_at":"2022-12-10T16:53:16.000Z","size":8205,"stargazers_count":27,"open_issues_count":15,"forks_count":1,"subscribers_count":1,"default_branch":"develop","last_synced_at":"2025-04-02T09:11:12.813Z","etag":null,"topics":["bulma","css","js","preact"],"latest_commit_sha":null,"homepage":"https://solarliner.github.io/preact-bulma","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/SolarLiner.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":"2018-09-17T12:13:32.000Z","updated_at":"2023-02-04T07:13:53.000Z","dependencies_parsed_at":"2023-01-14T18:57:03.855Z","dependency_job_id":null,"html_url":"https://github.com/SolarLiner/preact-bulma","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/SolarLiner/preact-bulma","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SolarLiner%2Fpreact-bulma","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SolarLiner%2Fpreact-bulma/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SolarLiner%2Fpreact-bulma/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SolarLiner%2Fpreact-bulma/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SolarLiner","download_url":"https://codeload.github.com/SolarLiner/preact-bulma/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SolarLiner%2Fpreact-bulma/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270110198,"owners_count":24529009,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-12T02:00:09.011Z","response_time":80,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["bulma","css","js","preact"],"created_at":"2024-10-09T20:15:30.116Z","updated_at":"2025-08-12T18:13:57.754Z","avatar_url":"https://github.com/SolarLiner.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Preact Bulma ⚛️\n\nA collection of components to build interfaces with Bulma.\n\n![](https://img.shields.io/github/license/solarliner/preact-bulma.svg)\n![](https://img.shields.io/david/solarliner/preact-bulma.svg)\n![](https://img.shields.io/david/dev/solarliner/preact-bulma.svg)\n![](https://img.shields.io/david/peer/solarliner/preact-bulma.svg)\n![](https://img.shields.io/bundlephobia/minzip/preact-bulma.svg)\n![](https://img.shields.io/npm/v/preact-bulma.svg)\n\n```bash\nnpm install preact-bulma\n```\n\nFor the version targeting Preact X, use\n\n```bash\nnpm install preact-bulma@next\n```\n\n\u003csup\u003ev1 but still in alpha! [Here's why](#but-why-100-when-its-still-alpha).\u003c/sup\u003e\n\n## Getting started\n\n### 1. Install\n\n`preact-bulma` has a peer dependency on Preact, which means you need to install it separately, but allows you to choose\nthe version. The project supports 8.2.x and up.\n\n### 2. Add styling\n\nThe project doesn't import any styling by default - this is to let you have full control over the style. You can import\nthe full Bulma framework, or, using SASS/SCSS, only pull the parts that you want.\n\n#### Full Bulma bundle (default theme, no customization, **easiest**)\n\n```javascript\n// Import Bulma CSS\nimport \"bulma/css/bulma.min.css\";\n```\n\n#### Custom styling (allows customization, **recommended**)\n\n```javascript\n// Import SCSS file\nimport \"styles/app.scss\";\n```\n\n```scss\n@charset \"utf-8\";\n// Import *all* of Bulma - refer to the customization guide for more info on customizing Bulma:\n// https://bulma.io/documentation/customize/\n@import \"~bulma/bulma\";\n```\n\n### 3. Use `preact-bulma`\n\nYou can now use the provided components into your project as you would with any component.\n\n```jsx\nimport { Card } from \"preact-bulma\";\nfunction MyCard() {\n  \u003cCard.Card\u003e\n    \u003cCard.Header\n      title=\"Physics breakthrough\"\n      icon=\"fas fa-exclamation-circle\"\n    /\u003e\n    \u003cCard.Content\u003e\n      No, really, literally. Black holes have been proven to break through\n      spacetime. (get it?)\n    \u003c/Card.Content\u003e\n    \u003cCard.Footer\u003e\n      \u003cCard.FooterItem\u003eShare\u003c/Card.FooterItem\u003e\n    \u003c/Card.Footer\u003e\n  \u003c/Card.Card\u003e;\n}\n```\n\n## Links\n\n- **Storybook with all components**: https://solarliner.github.io/preact-bulma\n- **Wiki with usage notes**: https://github.com/solarliner/preact-bulma/wiki\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsolarliner%2Fpreact-bulma","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsolarliner%2Fpreact-bulma","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsolarliner%2Fpreact-bulma/lists"}