{"id":15311647,"url":"https://github.com/aslemammad/svelte","last_synced_at":"2025-10-08T20:32:45.498Z","repository":{"id":105997879,"uuid":"346473786","full_name":"Aslemammad/svelte","owner":"Aslemammad","description":"Cybernetically enhanced web apps","archived":false,"fork":true,"pushed_at":"2021-03-08T11:18:33.000Z","size":66011,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-10-01T00:59:30.148Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://svelte.dev","language":null,"has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"sveltejs/svelte","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Aslemammad.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2021-03-10T19:48:23.000Z","updated_at":"2022-02-08T09:03:10.000Z","dependencies_parsed_at":null,"dependency_job_id":"8146ac4b-a202-45ee-9027-14c2340be37f","html_url":"https://github.com/Aslemammad/svelte","commit_stats":{"total_commits":4616,"total_committers":407,"mean_commits":"11.341523341523342","dds":"0.40879549393414216","last_synced_commit":"ce3a5791258ec6ecf8c1ea022cb871afe805a45c"},"previous_names":[],"tags_count":100,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Aslemammad%2Fsvelte","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Aslemammad%2Fsvelte/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Aslemammad%2Fsvelte/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Aslemammad%2Fsvelte/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Aslemammad","download_url":"https://codeload.github.com/Aslemammad/svelte/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":219877266,"owners_count":16554910,"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":"2024-10-01T08:34:13.237Z","updated_at":"2025-10-08T20:32:39.161Z","avatar_url":"https://github.com/Aslemammad.png","language":null,"funding_links":["https://opencollective.com/svelte"],"categories":[],"sub_categories":[],"readme":"\u003cp\u003e\n  \u003ca href=\"https://svelte.dev\"\u003e\n\t\u003cimg alt=\"Cybernetically enhanced web apps: Svelte\" src=\"https://sveltejs.github.io/assets/banner.png\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://www.npmjs.com/package/svelte\"\u003e\n    \u003cimg src=\"https://img.shields.io/npm/v/svelte.svg\" alt=\"npm version\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://github.com/sveltejs/svelte/blob/master/LICENSE\"\u003e\n    \u003cimg src=\"https://img.shields.io/npm/l/svelte.svg\" alt=\"license\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://svelte.dev/chat\"\u003e\n    \u003cimg src=\"https://img.shields.io/discord/457912077277855764?label=chat\u0026logo=discord\" alt=\"Chat\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n\n## What is Svelte?\n\nSvelte is a new way to build web applications. It's a compiler that takes your declarative components and converts them into efficient JavaScript that surgically updates the DOM.\n\nLearn more at the [Svelte website](https://svelte.dev), or stop by the [Discord chatroom](https://svelte.dev/chat).\n\n\n## Supporting Svelte\n\nSvelte is an MIT-licensed open source project with its ongoing development made possible entirely by fantastic volunteers. If you'd like to support their efforts, please consider:\n\n- [Becoming a backer on Open Collective](https://opencollective.com/svelte).\n\nFunds donated via Open Collective will be used for compensating expenses related to Svelte's development such as hosting costs. If sufficient donations are received, funds may also be used to support Svelte's development more directly.\n\n\n## Development\n\nPull requests are encouraged and always welcome. [Pick an issue](https://github.com/sveltejs/svelte/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc) and help us out!\n\nTo install and work on Svelte locally:\n\n```bash\ngit clone https://github.com/sveltejs/svelte.git\ncd svelte\nnpm install\n```\n\n\u003e Do not use Yarn to install the dependencies, as the specific package versions in `package-lock.json` are used to build and test Svelte.\n\nTo build the compiler and all the other modules included in the package:\n\n```bash\nnpm run build\n```\n\nTo watch for changes and continually rebuild the package (this is useful if you're using [npm link](https://docs.npmjs.com/cli/link.html) to test out changes in a project locally):\n\n```bash\nnpm run dev\n```\n\nThe compiler is written in [TypeScript](https://www.typescriptlang.org/), but don't let that put you off — it's basically just JavaScript with type annotations. You'll pick it up in no time. If you're using an editor other than [Visual Studio Code](https://code.visualstudio.com/), you may need to install a plugin in order to get syntax highlighting and code hints, etc.\n\n\n### Running Tests\n\n```bash\nnpm run test\n```\n\nTo filter tests, use `-g` (aka `--grep`). For example, to only run tests involving transitions:\n\n```bash\nnpm run test -- -g transition\n```\n\n\n## svelte.dev\n\nThe source code for https://svelte.dev, including all the documentation, lives in the [site](site) directory. The site is built with [Sapper](https://sapper.svelte.dev).\n\n### Is svelte.dev down?\n\nProbably not, but it's possible. If you can't seem to access any `.dev` sites, check out [this SuperUser question and answer](https://superuser.com/q/1413402).\n\n## License\n\n[MIT](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faslemammad%2Fsvelte","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faslemammad%2Fsvelte","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faslemammad%2Fsvelte/lists"}