{"id":20875901,"url":"https://github.com/saqqdy/uni-use","last_synced_at":"2025-08-13T21:43:57.396Z","repository":{"id":173542173,"uuid":"597953594","full_name":"saqqdy/uni-use","owner":"saqqdy","description":"Some useful composition api","archived":false,"fork":false,"pushed_at":"2024-06-03T06:26:00.000Z","size":573,"stargazers_count":3,"open_issues_count":1,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-04T02:43:53.112Z","etag":null,"topics":["speechrecognition","speechsynthesis","uni-use","use-downloads","use-recognition","use-speak","use-textarea","vue-hooks"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/saqqdy.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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},"funding":{"github":["saqqdy"]}},"created_at":"2023-02-06T04:16:15.000Z","updated_at":"2024-06-13T09:18:51.000Z","dependencies_parsed_at":"2024-10-20T18:05:06.363Z","dependency_job_id":null,"html_url":"https://github.com/saqqdy/uni-use","commit_stats":null,"previous_names":["saqqdy/uni-use"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/saqqdy/uni-use","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saqqdy%2Funi-use","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saqqdy%2Funi-use/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saqqdy%2Funi-use/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saqqdy%2Funi-use/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/saqqdy","download_url":"https://codeload.github.com/saqqdy/uni-use/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saqqdy%2Funi-use/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268653960,"owners_count":24285106,"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","status":"online","status_checked_at":"2025-08-04T02:00:09.867Z","response_time":79,"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":["speechrecognition","speechsynthesis","uni-use","use-downloads","use-recognition","use-speak","use-textarea","vue-hooks"],"created_at":"2024-11-18T06:49:02.087Z","updated_at":"2025-08-13T21:43:57.333Z","avatar_url":"https://github.com/saqqdy.png","language":"TypeScript","funding_links":["https://github.com/sponsors/saqqdy"],"categories":[],"sub_categories":[],"readme":"\u003cdiv style=\"text-align: center;\" align=\"center\"\u003e\n\n# @uni-use/monorepo\n\nCollection of common composition apis for vue2 \u0026 vue3\n\n[![NPM version][npm-image]][npm-url]\n[![Codacy Badge][codacy-image]][codacy-url]\n[![License][license-image]][license-url]\n\n[![Sonar][sonar-image]][sonar-url]\n\n\u003c/div\u003e\n\n## Function list\n\n- A js utilities that contains all the methods for downloading files: [use-downloads](https://github.com/saqqdy/uni-use/tree/master/packages/downloads)\n- A combined api for editable html and textarea: [use-textarea](https://github.com/saqqdy/uni-use/tree/master/packages/textarea)\n- A composition api for SpeechSynthesis, supports vue2.0 and vue3.0: [use-speak](https://github.com/saqqdy/uni-use/tree/master/packages/speak)\n- A composition api for SpeechRecognition, supports vue2.0 and vue3.0: [use-recognition](https://github.com/saqqdy/uni-use/tree/master/packages/recognition)\n- (Developing...) An easy to use axios based http client combinatorial api with support for return sequentially: [@uni-use/request](https://github.com/saqqdy/uni-use/tree/master/packages/request)\n- Mounted state in ref: [@uni-use/mounted](https://github.com/saqqdy/uni-use/tree/master/packages/utils/mounted)\n- SSR compatibility isSupported: [@uni-use/supported](https://github.com/saqqdy/uni-use/tree/master/packages/utils/supported)\n- Promised one-time watch for changes: [use-until](https://github.com/saqqdy/uni-use/tree/master/packages/utils/until)\n- Collection of shared Utilities: [@uni-use/shared](https://github.com/saqqdy/uni-use/tree/master/packages/utils/shared)\n\n## Install\n\ne.g: use `use-downloads`\n\n```shell\n# by pnpm\npnpm install use-downloads\n\n# by npm\nnpm install -D use-downloads\n\n# by yarn\nyarn add use-downloads\n```\n\n## Usage\n\n### General use\n\n```js\nimport useDownloads from 'use-downloads'\nconst { download } = useDownloads()\n\ndownload('url', options)\n```\n\n2. by require\n\n```js\nconst useDownloads = require('use-downloads')\nconst { download } = useDownloads()\n\ndownload('url', options)\n```\n\n### Use CDN resource\n\n```html\n\u003c!-- head --\u003e\n\u003cscript src=\"https://unpkg.com/use-downloads@1.3.0/dist/index.global.prod.js\"\u003e\u003c/script\u003e\n```\n\n## Issues \u0026 Support\n\nPlease open an issue [here](https://github.com/saqqdy/uni-use/issues).\n\n## License\n\n[MIT](LICENSE)\n\n[npm-image]: https://img.shields.io/npm/v/@uni-use/monorepo.svg?style=flat-square\n[npm-url]: https://npmjs.org/package/@uni-use/monorepo\n[codacy-image]: https://app.codacy.com/project/badge/Grade/f70d4880e4ad4f40aa970eb9ee9d0696\n[codacy-url]: https://www.codacy.com/gh/saqqdy/@uni-use/monorepo/dashboard?utm_source=github.com\u0026utm_medium=referral\u0026utm_content=saqqdy/@uni-use/monorepo\u0026utm_campaign=Badge_Grade\n[license-image]: https://img.shields.io/badge/License-MIT-blue.svg\n[license-url]: LICENSE\n[sonar-image]: https://sonarcloud.io/api/project_badges/quality_gate?project=saqqdy_uni-use\n[sonar-url]: https://sonarcloud.io/dashboard?id=saqqdy_uni-use\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsaqqdy%2Funi-use","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsaqqdy%2Funi-use","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsaqqdy%2Funi-use/lists"}