{"id":14954551,"url":"https://github.com/meteor/flowbite-meteor-starter","last_synced_at":"2025-10-19T21:32:46.218Z","repository":{"id":180482790,"uuid":"665210701","full_name":"meteor/flowbite-meteor-starter","owner":"meteor","description":null,"archived":false,"fork":false,"pushed_at":"2023-09-29T13:08:15.000Z","size":127,"stargazers_count":8,"open_issues_count":0,"forks_count":4,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-01-30T06:32:06.945Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://flowbit-meteor-starter.meteorapp.com/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/meteor.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2023-07-11T17:27:23.000Z","updated_at":"2024-12-14T23:32:31.000Z","dependencies_parsed_at":"2024-09-24T13:04:17.783Z","dependency_job_id":"461e976f-aafe-449a-916e-3b31b4b0dc9a","html_url":"https://github.com/meteor/flowbite-meteor-starter","commit_stats":null,"previous_names":["henriquealbert/flowbite-meteor-starter","meteor/flowbite-meteor-starter"],"tags_count":0,"template":true,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meteor%2Fflowbite-meteor-starter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meteor%2Fflowbite-meteor-starter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meteor%2Fflowbite-meteor-starter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meteor%2Fflowbite-meteor-starter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/meteor","download_url":"https://codeload.github.com/meteor/flowbite-meteor-starter/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":237221176,"owners_count":19274447,"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","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":[],"created_at":"2024-09-24T13:04:10.671Z","updated_at":"2025-10-19T21:32:45.881Z","avatar_url":"https://github.com/meteor.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"This is a [Meteor.js](https://meteor.com/) project.\n\nLive demo: [flowbit-meteor-starter.meteorapp.com](https://flowbit-meteor-starter.meteorapp.com/)\n\nIt also includes:\n\n- [x] [`flowbite`](https://flowbite.com)\n- [x] [`flowbite-react`](https://flowbite-react.com)\n- [x] [`react-icons`](https://react-icons.github.io/react-icons)\n- [x] [`tailwindcss`](https://tailwindcss.com)\n- [x] Quality of life tools, like\n  - [x] [`eslint`](https://eslint.org) with some plugins\n  - [x] [`prettier`](https://prettier.io)\n\n## Getting started\n\n`Meteor.js` requires [`Node.js`](https://nodejs.org).\n\nIf you don't already have `npm` available, make sure you set them up.\n\nInstall the dependencies:\n\n```bash\nmeteor npm install\n```\n\nNow you can run the development server:\n\n```bash\nnpm run dev\n```\n\nOpen [http://localhost:3000](http://localhost:3000) with your browser to see the result.\n\nYou can start editing the page by modifying `imports/ui/App.tsx`. The page auto-updates as you edit the file.\n\n## Add `flowbite-react` to `meteor` on your own\n\nFollow these steps to add `flowbite-react` to a `meteor` project without cloning this repo.\n\n### Requirements\n\n- [x] [Node.js](https://nodejs.org/en/)\n- [x] [Meteor.js CLI](https://docs.meteor.com/install.html)\n\n### How-to\n\n#### Create a new `meteor` starter project:\n\n```sh\nmeteor create flowbite-app --tailwind      \ncd flowbite-app\n```\nThis will create a new `meteor` project with `tailwindcss` support.\n\n#### Install `flowbite` and `flowbite-react`:\n\n```sh\nmeteor npm install --save flowbite flowbite-react\n```\n\n#### Edit your `tailwind.config.js`:\n\n```js\nmodule.exports = {\n  content: [\n    \"./imports/ui/**/*.{js,jsx,ts,tsx}\",\n    \"./client/*.html\",\n    \"node_modules/flowbite-react/**/*.{js,jsx,ts,tsx}\",\n  ],\n  theme: {\n    extend: {},\n  },\n  plugins: [require(\"flowbite/plugin\")],\n};\n\n```\n\n#### Start using `flowbite-react`!\n\n```js\nimport { Alert } from \"flowbite-react\";\n\nexport default function MyPage() {\n  return \u003cAlert color=\"info\"\u003eAlert!\u003c/Alert\u003e;\n}\n```\n\n## Learn more\n\n### About `meteor`\n\nTo learn more about Meteor.js, take a look at the following resources:\n\n- [Meteor.js Documentation](https://docs.meteor.com) - learn about Next.js features and API.\n\nYou can check out [the Meteor.js GitHub repository](https://github.com/meteor/meteor/) - your feedback and contributions are welcome!\n\n### About `flowbite`\n\n[Flowbite](https://flowbite.com) is an open source collection of UI components built with the utility classes from Tailwind CSS that you can use as a starting point when coding user interfaces and websites.\n\nIn this repository, we setup [`flowbite-react`](https://flowbite-react.com) for you with examples of how to use the React components in `pages/index.tsx`.\n\n## Deploy on `meteor-cloud`\n\nThe easiest way to deploy your Meteor.js app is to use the [Meteor Cloud Platform](https://meteor.com/cloud) from the creators of Meteor.js.\n\nCheck out our [Meteor.js deployment documentation](https://galaxy-guide.meteor.com/deploy-to-galaxy.html) for more details.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmeteor%2Fflowbite-meteor-starter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmeteor%2Fflowbite-meteor-starter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmeteor%2Fflowbite-meteor-starter/lists"}