{"id":18406304,"url":"https://github.com/fastjs-team/core","last_synced_at":"2025-05-15T13:04:56.484Z","repository":{"id":62104408,"uuid":"555330819","full_name":"fastjs-team/core","owner":"fastjs-team","description":"Fastjs is a useful, lightweight JavaScript library for any types of project.","archived":false,"fork":false,"pushed_at":"2025-04-11T18:09:57.000Z","size":949,"stargazers_count":323,"open_issues_count":9,"forks_count":40,"subscribers_count":19,"default_branch":"main","last_synced_at":"2025-04-13T20:16:54.579Z","etag":null,"topics":["fastjs","fastjs-next","javascript","typescript"],"latest_commit_sha":null,"homepage":"https://fastjs.dev","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/fastjs-team.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/contributing.md","funding":".github/FUNDING.yml","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},"funding":{"github":"xiaodong2008"}},"created_at":"2022-10-21T11:20:45.000Z","updated_at":"2025-04-06T14:57:12.000Z","dependencies_parsed_at":"2023-11-24T07:30:53.753Z","dependency_job_id":"423d91c2-a702-47a3-9ec5-5cd22bad4700","html_url":"https://github.com/fastjs-team/core","commit_stats":{"total_commits":864,"total_committers":10,"mean_commits":86.4,"dds":"0.14004629629629628","last_synced_commit":"f4e461649467f6017ad199a423d830d425c5e1d2"},"previous_names":["fastjs-team/core","fastjs-team/fastjs-next"],"tags_count":65,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fastjs-team%2Fcore","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fastjs-team%2Fcore/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fastjs-team%2Fcore/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fastjs-team%2Fcore/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fastjs-team","download_url":"https://codeload.github.com/fastjs-team/core/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248961240,"owners_count":21189993,"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":["fastjs","fastjs-next","javascript","typescript"],"created_at":"2024-11-06T03:08:03.174Z","updated_at":"2025-04-15T05:20:30.293Z","avatar_url":"https://github.com/fastjs-team.png","language":"TypeScript","readme":"\u003cbr/\u003e\n\u003cbr/\u003e\n\u003cdiv align=\"center\"\u003e\n    \u003cimg src=\"./logoDisplay.svg\" width=\"190\" /\u003e\n\u003c/div\u003e\n\u003ch3 align=\"center\"\u003e\u003cb\u003eFastjs / Powerful JavaScript Library\u003c/b\u003e\u003c/h3\u003e\n\u003cp align=\"center\"\u003e\n        \u003ca href=\"https://github.com/fastjs-team/core\"\u003e\u003cimg alt=\"Stars\" src=\"https://img.shields.io/github/stars/fastjs-team?style=flat-square\u0026logo=github\u0026cacheSeconds=600\u0026color=yellow\u0026label=Team%20Stars\"\u003e\u003c/a\u003e\n        \u003ca href=\"https://github.com/fastjs-team/core\"\u003e\u003cimg alt=\"GitHub commit activity (branch)\" src=\"https://img.shields.io/github/commit-activity/w/fastjs-team/core?style=flat-square\u0026logo=github\u0026cacheSeconds=600\u0026label=Commit%20Activity\"\u003e\u003c/a\u003e\n        \u003ca href=\"https://github.com/fastjs-team/core\"\u003e\u003cimg alt=\"Last Action Status\" src=\"https://img.shields.io/github/actions/workflow/status/fastjs-team/core/ci.yml?style=flat-square\u0026logo=githubactions\u0026cacheSeconds=60\u0026logoColor=white\u0026label=CI Check\"\u003e\u003c/a\u003e\n        \u003ca href=\"https://www.npmjs.com/package/jsfast\"\u003e\u003cimg alt=\"Last Version\" src=\"https://img.shields.io/npm/v/jsfast?style=flat-square\u0026logo=npm\u0026cacheSeconds=60\u0026label=Last%20Version\u0026color=C70000\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n## Getting Started\n\n- https://fastjs.dev/\n- https://docs.fastjs.dev/\n\n## Description\n\nFastjs is a useful, lightweight JavaScript library for any types of project.\n\nIt is designed to be easy to use. Fastjs can be with any framework or just pure JavaScript.\n\n## Start Using\n\n### Bundler/CommonJS\n\n```bash\nnpm install jsfast\n```\n\n```js\nimport { dom } from \"jsfast\"; // esm\nconst { request } = require(\"jsfast\"); // cjs\n```\n\n### CDN (Global)\n\n```html\n\u003cscript src=\"https://unpkg.com/jsfast/dist/fastjs.global.js\"\u003e\u003c/script\u003e\n\u003cscript\u003e\n  fastjs.dom().text(\"Hello World!\");\n\u003c/script\u003e\n```\n\n### Browser (ES Module)\n\n```html\n\u003cscript type=\"module\"\u003e\n  import { dom } from \"https://unpkg.com/jsfast/dist/fastjs.esm.browser.js\";\n\u003c/script\u003e\n```\n\n## Info\n\n- Author: [xiaodong2008](https://github.com/xiaodong2008)\n- License: [MIT](https://opensource.org/licenses/MIT)\n\n## Sponsors\n\n\u003cdiv align=\"center\"\u003e\n  \u003cimg src=\"https://raw.githubusercontent.com/xiaodong2008/sponsors/main/sponsors.wide.svg\" /\u003e\n\u003c/div\u003e\n\n## Contributors\n\n\u003ca href=\"https://github.com/fastjs-team/core/graphs/contributors\"\u003e\n  \u003cimg src=\"https://contrib.rocks/image?repo=fastjs-team/core\" /\u003e\n\u003c/a\u003e\n","funding_links":["https://github.com/sponsors/xiaodong2008"],"categories":["TypeScript"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffastjs-team%2Fcore","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffastjs-team%2Fcore","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffastjs-team%2Fcore/lists"}