{"id":17485593,"url":"https://github.com/patricklafrance/wmfnext-host","last_synced_at":"2026-04-20T10:03:10.894Z","repository":{"id":65538661,"uuid":"578795573","full_name":"patricklafrance/wmfnext-host","owner":"patricklafrance","description":"Host project for wmfnext federated app","archived":false,"fork":false,"pushed_at":"2023-02-10T00:24:24.000Z","size":1590,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-09-11T12:18:43.177Z","etag":null,"topics":["federation","microfrontend","microfrontends","module-federation","react","react-router","spa","webpack","webpack-module-federation"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/patricklafrance.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-12-15T22:40:55.000Z","updated_at":"2023-01-18T02:52:10.000Z","dependencies_parsed_at":"2023-02-15T14:45:28.452Z","dependency_job_id":null,"html_url":"https://github.com/patricklafrance/wmfnext-host","commit_stats":{"total_commits":44,"total_committers":2,"mean_commits":22.0,"dds":"0.022727272727272707","last_synced_commit":"5d0a2cdcd9bc01f87e24b2ed0fc2acdacf483533"},"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/patricklafrance/wmfnext-host","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patricklafrance%2Fwmfnext-host","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patricklafrance%2Fwmfnext-host/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patricklafrance%2Fwmfnext-host/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patricklafrance%2Fwmfnext-host/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/patricklafrance","download_url":"https://codeload.github.com/patricklafrance/wmfnext-host/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patricklafrance%2Fwmfnext-host/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32042293,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T00:18:06.643Z","status":"online","status_checked_at":"2026-04-20T02:00:06.527Z","response_time":94,"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":["federation","microfrontend","microfrontends","module-federation","react","react-router","spa","webpack","webpack-module-federation"],"created_at":"2024-10-19T02:08:13.974Z","updated_at":"2026-04-20T10:03:10.876Z","avatar_url":"https://github.com/patricklafrance.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# wmfnext-host\n\nHost application to showcase [wmfnext-shell](https://github.com/patricklafrance/wmfnext-shell).\n\nA [live example](https://wmfnext-host.netlify.app) of this application is hosted on Netlify.\n\n- [Installation](#installation)\n- [Start developing](#start-developing)\n- [Publish the application](#publish-the-application)\n- [Release the packages](#release-the-packages)\n- [Available modules](#available-modules)\n- [Other commands](#other-commands)\n\n## Installation\n\nThis project use Yarn workspace. Therefore, you must install Yarn:\n\n```\nchoco install yarn\n``` \n\nFor more options to install Yarn, view https://yarnpkg.com/lang/en/docs/install/#windows-stable.\n\nTo install the project, open a terminal at the root of the workspace and execute the following command:\n\n```bash\nyarn install-dev\n```\n\n\u003e To ease local development symlinks to shell packages are automatically created at installation.\n\n## Start developing\n\n[Open a terminal in VSCode](https://code.visualstudio.com/docs/editor/integrated-terminal#_managing-multiple-terminals) and execute the following command at the root of the workspace:\n\n```bash\nyarn dev\n```\n\n## Static module\n\nTo develop the static module in isolation, [Open a terminal in VSCode](https://code.visualstudio.com/docs/editor/integrated-terminal#_managing-multiple-terminals) and execute the following commands at the root of the workspace:\n\n```bash\ncd packages/static-module-1\n```\n\n```bash\nyarn dev-local\n```\n\n## Publish the application\n\nPush a commit and the application will be automatically deployed on Netlify.\n\n## Release the packages\n\nReleasing the packages includes several steps:\n\n1. Compile the packages code for production\n2. Identifies packages that have been updated since the previous release (Read the [Lerna](#lerna) section.)\n3. Bump the version of the identified packages\n4. Modifies package metadata to reflect new release\n5. Publish the packages to npm\n6. Push those changes to Git with a tag\n7. Create a new Github release associated to the tag created previously\n\nFortunately, this is all automated with a few commands!\n\nBefore you release, make sure you are in the `master` branch, have **write access** to every selected npm packages and that you are [logged in to npm](https://docs.npmjs.com/cli/v9/commands/npm-login).\n\nTo release, open a terminal at the root of the workspace and execute the following commands:\n\n```bash\nyarn new-version\nyarn release\nyarn push-release \u003cVERSION\u003e (e.g. yarn push-release 22.0.2)\n```\n\nEx:\n\n```bash\nyarn new-version\nyarn release\nyarn push-release 19.0.1\n```\n\nAfter you released the packages, create a [Github release](https://github.com/gsoft-inc/sg-orbit/releases) for the Git annotated tag [@sharegate/orbit-ui package version] created earlier by the `push-release` command and list all the changes that has been published.\n\nDon't forget to **publish** the release.\n\n## Available modules\n\n- The static module \"static-1\" is automatically deployed with the host application.\n- The remote module \"remote-1\" is available in the [wmfnext-remote-1 repository](https://github.com/patricklafrance/wmfnext-remote-1).\n\n## Other commands\n\n### build\n\n```bash\nyarn build\n```\n\n### clean\n\n```bash\nyarn clean\n```\n\n### link-pkg\n\n```bash\nyarn link-pkg\n```\n\n### reset\n\n```bash\nyarn reset\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpatricklafrance%2Fwmfnext-host","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpatricklafrance%2Fwmfnext-host","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpatricklafrance%2Fwmfnext-host/lists"}