{"id":16014472,"url":"https://github.com/davebitter/fe-monorepo","last_synced_at":"2026-04-13T04:35:34.453Z","repository":{"id":57701180,"uuid":"511024764","full_name":"DaveBitter/fe-monorepo","owner":"DaveBitter","description":"This repository is build up by multiple steps translated in the following articles on https://techhub.iodigital.com which are part of the series https://techhub.iodigital.com/series/how-do-i-build-a-component-library.","archived":false,"fork":false,"pushed_at":"2022-08-24T15:07:59.000Z","size":754,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-29T19:10:02.278Z","etag":null,"topics":["components","eslint","husky","jest","lit","monorepo","prettier","storybook","stylelint","web","webcomponents","workspaces","yarn"],"latest_commit_sha":null,"homepage":"https://fe-monorepo.davebitter.com","language":"TypeScript","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/DaveBitter.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}},"created_at":"2022-07-06T06:57:57.000Z","updated_at":"2022-08-25T16:44:33.000Z","dependencies_parsed_at":"2022-08-29T04:31:39.192Z","dependency_job_id":null,"html_url":"https://github.com/DaveBitter/fe-monorepo","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/DaveBitter/fe-monorepo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DaveBitter%2Ffe-monorepo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DaveBitter%2Ffe-monorepo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DaveBitter%2Ffe-monorepo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DaveBitter%2Ffe-monorepo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DaveBitter","download_url":"https://codeload.github.com/DaveBitter/fe-monorepo/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DaveBitter%2Ffe-monorepo/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262674159,"owners_count":23346713,"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":["components","eslint","husky","jest","lit","monorepo","prettier","storybook","stylelint","web","webcomponents","workspaces","yarn"],"created_at":"2024-10-08T15:03:11.026Z","updated_at":"2026-04-13T04:35:34.410Z","avatar_url":"https://github.com/DaveBitter.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FE monorepo\n\n[![Netlify Status](https://api.netlify.com/api/v1/badges/f1e7fff1-c7c9-4fb2-a243-057c565484bd/deploy-status)](https://app.netlify.com/sites/fe-monorepo/deploys)\n\n![abstract artwork for series](./docs/how-do-i-build-a-component-library.png)\n\n**FE monorepo is a component library build to showcase how you can set up a monorepo architecture for your next component library.**\n\nThis repository is build up by multiple steps translated in the following articles on the [iO TechHub](https://techhub.iodigital.com) which are part of the series [How do I build a Component Library?](https://techhub.iodigital.com/series/how-do-i-build-a-component-library):\n\n## [How do I set up a monorepo, SemVer strategy and private package registry?](https://techhub.iodigital.com/articles/how-do-i-build-a-component-library/monorepo-semver-package-registry)\n\n![abstract artwork for monorepo](./docs/monorepo-semver-package-registry.png)\n\n- **Yarn Workspaces** - used to help with dependency management\n- **Changeset** - used to help with SemVer\n- **GitHub package registry** - used to publish versioned packages to be installed through NPM\n\n## [How do I pick a front-end framework \u0026 showcase it with Storybook?](https://techhub.iodigital.com/articles/how-do-i-build-a-component-library/front-end-framework-storybook)\n\n![abstract artwork for fe framework and storybook](./docs/front-end-framework-storybook.png)\n\n- **Lit Element** - used as the front-end framework of choice\n- **Storybook** - used to document components\n\n## [How do I set up linting, unit, snapshot and visual regression testing?](https://techhub.iodigital.com/articles/how-do-i-build-a-component-library/linting-testing)\n\n![abstract artwork for unit, snapshot and visual regression](./docs/linting-testing.png)\n\n- **ESLint** - used as linter for TS and JS files\n- **Stylelint** - used as linter for CSS files\n- **Prettier** - used as formatter for all files\n- **Import sorts** - used to sort and group import statements\n- **Manypkg** - used tokeep dependencies in sync and sorted\n- **Jest** - used as test runner\n- **Husky** - used as pre-commit hook to kick off linting, testing and formatting\n- **lint-staged** - used to only lint staged files\n- **commitizen** - used as way to enforce a commit style\n- **Storyshots** - used for snapshot testing\n- **Imageshots** - used for visual regression testing\n\n## [How do I setup CI/CD \u0026 hosting?](https://techhub.iodigital.com/articles/how-do-i-build-a-component-library/ci-cd-hosting)\n\n![abstract artwork for ci/cd and hosting](./docs/ci-cd-hosting.png)\n\n- **GitHub actions** - used for CI/CD\n- **Netlify** - used to host Storybook build\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdavebitter%2Ffe-monorepo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdavebitter%2Ffe-monorepo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdavebitter%2Ffe-monorepo/lists"}