{"id":17808290,"url":"https://github.com/loaderb0t/nx-dynamic-mf","last_synced_at":"2025-03-17T15:30:56.500Z","repository":{"id":58401617,"uuid":"531254181","full_name":"LoaderB0T/nx-dynamic-mf","owner":"LoaderB0T","description":"Nx helper for ng-dynamic-mf","archived":false,"fork":false,"pushed_at":"2024-09-28T14:21:25.000Z","size":324,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-28T00:51:43.030Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/LoaderB0T.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":"2022-08-31T20:49:36.000Z","updated_at":"2024-09-28T14:21:28.000Z","dependencies_parsed_at":"2024-10-27T15:15:34.970Z","dependency_job_id":"71b6fc9d-0160-45a7-94bc-14bb6c13ffaf","html_url":"https://github.com/LoaderB0T/nx-dynamic-mf","commit_stats":{"total_commits":55,"total_committers":4,"mean_commits":13.75,"dds":"0.19999999999999996","last_synced_commit":"6401247ae6d95e31b71a04c9f7e38fcb5cbab6da"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LoaderB0T%2Fnx-dynamic-mf","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LoaderB0T%2Fnx-dynamic-mf/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LoaderB0T%2Fnx-dynamic-mf/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LoaderB0T%2Fnx-dynamic-mf/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LoaderB0T","download_url":"https://codeload.github.com/LoaderB0T/nx-dynamic-mf/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243865646,"owners_count":20360476,"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-10-27T15:10:15.066Z","updated_at":"2025-03-17T15:30:56.136Z","avatar_url":"https://github.com/LoaderB0T.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![npm](https://img.shields.io/npm/v/nx-dynamic-mf?color=%2300d26a\u0026style=for-the-badge)](https://www.npmjs.com/package/nx-dynamic-mf)\n[![Sonar Quality Gate](https://img.shields.io/sonar/quality_gate/LoaderB0T_nx-dynamic-mf?server=https%3A%2F%2Fsonarcloud.io\u0026style=for-the-badge)](https://sonarcloud.io/summary/new_code?id=LoaderB0T_nx-dynamic-mf)\n[![bundle size](https://img.shields.io/bundlephobia/minzip/nx-dynamic-mf?color=%23FF006F\u0026label=Bundle%20Size\u0026style=for-the-badge)](https://bundlephobia.com/package/nx-dynamic-mf)\n\n# nx-dynamic-mf\n\nNx helper for [ng-dynamic-mf](https://www.npmjs.com/package/ng-dynamic-mf)\n\n## Motivation 💥\n\nThis plugin provides a way to conviniently use the [ng-dynamic-mf](https://www.npmjs.com/package/ng-dynamic-mf) library in Nx workspaces.\n\n## Features 🔥\n\n✅ Start up the whole workspace with a single command (`nx construct`)\n\n✅ Supports multiple `modules.\u003cname\u003e.json` files in the workspace\n\n✅ Supports serving and building of apps (auto detection based on `modules.\u003cname\u003e.json`)\n\n✅ Supports `--watch` flag for building apps\n\nMore features including generators and more to come...\n\n## Built With 🔧\n\n- [TypeScript](https://www.typescriptlang.org/)\n- [Nx](https://nx.dev/)\n\n## Getting Started 🚀\n\n### Install\n\npnpm\n\n```bash\npnpm install -D nx-dynamic-mf\n```\n\nnpm\n\n```bash\nnpm install -D nx-dynamic-mf\n```\n\nyarn\n\n```bash\nyarn add -D nx-dynamic-mf\n```\n\n### Add to Workspace\n\nAdd a new target to your host app:\n\n```json\n{\n  \"targets\": {\n    \"construct\": {\n      \"builder\": \"nx-dynamic-mf:construct\",\n      \"options\": {\n        \"modulesFolder\": \"src/modules\"\n      }\n    }\n  }\n}\n```\n\n### Try it out\n\n```bash\n  nx construct\n```\n\n### Additional Options\n\nUse a different `modules.\u003cname\u003e.json` file:\n\n```bash\n  nx construct -m example\n```\n\nThis will use the `modules.example.json` file instead of the default `modules.default.json` file.\n\n---\n\nWatch certain projects for changes and rebuild them:\n\nWatch all builds:\n\n```bash\n  nx construct --watch\n```\n\nWatch certain builds:\n\n```bash\n  nx construct --watch proj1\n```\n\nor\n\n```bash\n  nx construct --watch proj1 --watch proj2\n```\n\nor\n\n```bash\n  nx construct --watch proj1,proj2\n```\n\n---\n\n## Contributing 🧑🏻‍💻\n\nContributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are **greatly appreciated**.\n\nIf you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag \"enhancement\".\nDon't forget to give the project a star! Thanks again!\n\n1. Fork the Project\n2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)\n3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)\n4. Push to the Branch (`git push origin feature/AmazingFeature`)\n5. Open a Pull Request\n\n## License 🔑\n\nDistributed under the MIT License. See `LICENSE.txt` for more information.\n\n## Contact 📧\n\nJanik Schumacher - [@LoaderB0T](https://twitter.com/LoaderB0T) - [linkedin](https://www.linkedin.com/in/janikschumacher/)\n\nProject Link: [https://github.com/LoaderB0T/ng-dynamic-module-federation](https://github.com/LoaderB0T/ng-dynamic-module-federation)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Floaderb0t%2Fnx-dynamic-mf","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Floaderb0t%2Fnx-dynamic-mf","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Floaderb0t%2Fnx-dynamic-mf/lists"}