{"id":20875878,"url":"https://github.com/saqqdy/browsers","last_synced_at":"2026-03-16T12:34:47.956Z","repository":{"id":172354058,"uuid":"619159616","full_name":"saqqdy/browsers","owner":"saqqdy","description":"Collection of common JavaScript / TypeScript utilities for browsers","archived":false,"fork":false,"pushed_at":"2023-08-28T04:22:47.000Z","size":738,"stargazers_count":2,"open_issues_count":10,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-09-30T20:24:06.448Z","etag":null,"topics":["browser","collection","javascript-library","js-lib","load-source","mount-css","mount-image","mount-script","mount-style","utilities"],"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,"zenodo":null},"funding":{"github":["saqqdy"]}},"created_at":"2023-03-26T12:57:23.000Z","updated_at":"2023-06-05T11:03:15.000Z","dependencies_parsed_at":null,"dependency_job_id":"19796e0d-2657-4ede-903e-cf2ab4a10603","html_url":"https://github.com/saqqdy/browsers","commit_stats":null,"previous_names":["saqqdy/browsers"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/saqqdy/browsers","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saqqdy%2Fbrowsers","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saqqdy%2Fbrowsers/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saqqdy%2Fbrowsers/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saqqdy%2Fbrowsers/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/saqqdy","download_url":"https://codeload.github.com/saqqdy/browsers/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saqqdy%2Fbrowsers/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278227722,"owners_count":25951979,"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-10-03T02:00:06.070Z","response_time":53,"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":["browser","collection","javascript-library","js-lib","load-source","mount-css","mount-image","mount-script","mount-style","utilities"],"created_at":"2024-11-18T06:48:55.034Z","updated_at":"2025-10-05T00:08:36.564Z","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# @browsers/monorepo\n\nSome simple utilities for browsers\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 simple function for load js/image/css/style: [load-source](https://github.com/saqqdy/browsers/tree/master/packages/load-source)\n- A simple function for mounting css: [mount-css](https://github.com/saqqdy/browsers/tree/master/packages/mount-css)\n- A simple function for mounting javascript: [mount-script](https://github.com/saqqdy/browsers/tree/master/packages/mount-script)\n- A simple function for mounting image: [mount-image](https://github.com/saqqdy/browsers/tree/master/packages/mount-image)\n- A simple function for mounting css style codes: [mount-style](https://github.com/saqqdy/browsers/tree/master/packages/mount-style)\n\n## Install\n\ne.g: use `load-source`\n\n```shell\n# by pnpm\npnpm install load-source\n\n# by npm\nnpm install -D load-source\n\n# by yarn\nyarn add load-source\n```\n\n## Usage\n\n### General use\n\n```js\nimport loadSource from 'load-source'\n\nloadSource('js/image/css/style', options)\n```\n\n2. by require\n\n```js\nconst loadSource = require('load-source')\n\nloadSource('js/image/css/style', options)\n```\n\n### Use CDN resource\n\n```html\n\u003c!-- head --\u003e\n\u003cscript src=\"https://unpkg.com/load-source@1.2.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/browsers/issues).\n\n## License\n\n[MIT](LICENSE)\n\n[npm-image]: https://img.shields.io/npm/v/@browsers/monorepo.svg?style=flat-square\n[npm-url]: https://npmjs.org/package/@browsers/monorepo\n[codacy-image]: https://app.codacy.com/project/badge/Grade/f70d4880e4ad4f40aa970eb9ee9d0696\n[codacy-url]: https://www.codacy.com/gh/saqqdy/@browsers/monorepo/dashboard?utm_source=github.com\u0026utm_medium=referral\u0026utm_content=saqqdy/@browsers/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_browsers\n[sonar-url]: https://sonarcloud.io/dashboard?id=saqqdy_browsers\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsaqqdy%2Fbrowsers","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsaqqdy%2Fbrowsers","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsaqqdy%2Fbrowsers/lists"}