{"id":28471234,"url":"https://github.com/requestnetwork/web-components","last_synced_at":"2025-07-01T20:31:31.516Z","repository":{"id":207617892,"uuid":"715855553","full_name":"RequestNetwork/web-components","owner":"RequestNetwork","description":"A collection of Web Components for quickly integrating Request Network into your app.","archived":false,"fork":false,"pushed_at":"2025-03-25T07:36:47.000Z","size":1185,"stargazers_count":5,"open_issues_count":59,"forks_count":7,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-06-07T10:48:44.497Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://docs.request.network","language":"Svelte","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/RequestNetwork.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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-11-08T01:01:38.000Z","updated_at":"2025-03-25T07:36:50.000Z","dependencies_parsed_at":"2023-11-20T16:27:34.763Z","dependency_job_id":"5018eccd-86f7-4050-9dfb-08d7a9269e5a","html_url":"https://github.com/RequestNetwork/web-components","commit_stats":null,"previous_names":["requestnetwork/web-components"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/RequestNetwork/web-components","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RequestNetwork%2Fweb-components","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RequestNetwork%2Fweb-components/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RequestNetwork%2Fweb-components/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RequestNetwork%2Fweb-components/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RequestNetwork","download_url":"https://codeload.github.com/RequestNetwork/web-components/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RequestNetwork%2Fweb-components/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263032836,"owners_count":23403045,"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":"2025-06-07T10:39:55.109Z","updated_at":"2025-07-01T20:31:31.463Z","avatar_url":"https://github.com/RequestNetwork.png","language":"Svelte","readme":"# Request Network Web Components\n\n## Introduction\n\nThis repo contains a collection of web components for quickly integrating\nRequest Network into your web application.\n\nThe components are built using Svelte but compiled to [Web Components](https://opensource.com/article/21/7/web-components) making them usable in any web environment, regardless of the framework.\n\n## Usage\n\nUsage depends on the component. See packages/\\\u003cpackage\u003e/README.md\n\n| Component | NPM Package |\n| --- | --- |\n| [@requestnetwork/add-stakeholder](packages/add-stakeholder/README.md) | [![npm version](https://badge.fury.io/js/%40requestnetwork%2Fadd-stakeholder.svg)](https://badge.fury.io/js/%40requestnetwork%2Fadd-stakeholder) |\n| [@requestnetwork/create-invoice-form](packages/create-invoice-form/README.md) | [![npm version](https://badge.fury.io/js/%40requestnetwork%2Fcreate-invoice-form.svg)](https://badge.fury.io/js/%40requestnetwork%2Fcreate-invoice-form) |\n| [@requestnetwork/invoice-dashboard](packages/invoice-dashboard/README.md) | [![npm version](https://badge.fury.io/js/%40requestnetwork%2Finvoice-dashboard.svg)](https://badge.fury.io/js/%40requestnetwork%2Finvoice-dashboard) |\n| [@requestnetwork/payment-widget](packages/payment-widget/README.md) | [![npm version](https://badge.fury.io/js/%40requestnetwork%2Fpayment-widget.svg)](https://badge.fury.io/js/%40requestnetwork%2Fpayment-widget) |\n| [@requestnetwork/single-invoice](packages/single-invoice/README.md) | [![npm version](https://badge.fury.io/js/%40requestnetwork%2Fsingle-invoice.svg)](https://badge.fury.io/js/%40requestnetwork%2Fsingle-invoice) |\n| [@requestnetwork/shared](packages/shared/README.md) | [![npm version](https://badge.fury.io/js/%40requestnetwork%2Fshared.svg)](https://badge.fury.io/js/%40requestnetwork%2Fshared) |\n\n\n## Developing\n\n```bash\n# Clone the repository\ngit clone https://github.com/RequestNetwork/web-components.git\n\n# Navigate into the cloned repository\ncd web-components\n\n# Install all dependencies\nnpm install\n\n# Build all packages locally\nnpm run build\n\n# Link local web-component packages into your app\nnpm run link:all --app-path=/path/to/app\n## Examples\nnpm run link:all --app-path=../invoicing-template\nnpm run link:all --app-path=../rn-checkout\n\n# Navigate to your project directory where the web components are used\ncd \u003cproject\u003e\n\n# Use local packages instead of the deployed ones\nnpm link @requestnetwork/create-invoice-form @requestnetwork/invoice-dashboard @requestnetwork/single-invoice\nnpm link @requestnetwork/payment-widget\n```\n\nFurther details specific to the component can be found in the relevant\npacakges/\u003ccomponent\u003e/README.md\n\n### Delete all node_modules/ directories\n\n```bash\nnpm run deep-clean\n```\n\n## NPM Workspaces\n\nRun a command in the context of all workspaces. Ignore workspaces missing target\nscript.\n\n```bash\nnpm run test --workspaces --if-present\n```\n\nRun a command in the context of specific workspaces.\n\n```bash\nnpm run test --workspace=add-stakeholder --workspace=other\n```\n\n## Release\n\nRun changeset command to create a changeset file.\n\n```bash\nnpx changeset\n```\n\nRun changeset version command to bump the version of the packages that have changesets.\n\n```bash\nnpx changeset version\n```\n\nPush the changes to the remote repository. Once the changes are merged, the new versions will be deployed automatically.\n\nFor more info about workinng with NPM workspaces see:\nhttps://docs.npmjs.com/cli/v8/using-npm/workspaces\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frequestnetwork%2Fweb-components","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frequestnetwork%2Fweb-components","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frequestnetwork%2Fweb-components/lists"}