{"id":28708551,"url":"https://github.com/trasherdk/xmr-sample-svelte","last_synced_at":"2026-04-12T09:45:31.459Z","repository":{"id":298832294,"uuid":"849263223","full_name":"trasherdk/xmr-sample-svelte","owner":"trasherdk","description":"Sample Svelte app using monero-ts","archived":false,"fork":false,"pushed_at":"2026-02-28T16:15:01.000Z","size":241,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-12T09:45:03.896Z","etag":null,"topics":["monero","monero-ts","svelte","sveltekit","typescript","vite","xmr"],"latest_commit_sha":null,"homepage":"","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/trasherdk.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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,"zenodo":null}},"created_at":"2024-08-29T09:26:44.000Z","updated_at":"2025-06-14T03:18:55.000Z","dependencies_parsed_at":"2025-06-13T06:33:28.050Z","dependency_job_id":"3477db1c-744d-48e6-a52e-0e9735d2e350","html_url":"https://github.com/trasherdk/xmr-sample-svelte","commit_stats":null,"previous_names":["trasherdk/xmr-sample-svelte"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/trasherdk/xmr-sample-svelte","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trasherdk%2Fxmr-sample-svelte","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trasherdk%2Fxmr-sample-svelte/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trasherdk%2Fxmr-sample-svelte/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trasherdk%2Fxmr-sample-svelte/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/trasherdk","download_url":"https://codeload.github.com/trasherdk/xmr-sample-svelte/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trasherdk%2Fxmr-sample-svelte/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31710792,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-12T06:22:27.080Z","status":"ssl_error","status_checked_at":"2026-04-12T06:21:52.710Z","response_time":58,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["monero","monero-ts","svelte","sveltekit","typescript","vite","xmr"],"created_at":"2025-06-14T19:00:35.409Z","updated_at":"2026-04-12T09:45:31.425Z","avatar_url":"https://github.com/trasherdk.png","language":"Svelte","funding_links":[],"categories":[],"sub_categories":[],"readme":"# create-svelte\n\nEverything you need to build a Svelte library, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/main/packages/create-svelte).\n\nRead more about creating a library [in the docs](https://kit.svelte.dev/docs/packaging).\n\n## 📚 Svelte 5 Reference\n\nThis project uses **Svelte 5** with the new runes system. For complete documentation and examples, see [`SVELTE_5_COMPLETE_REFERENCE.md`](./SVELTE_5_COMPLETE_REFERENCE.md) - your always-available Svelte 5 guide covering:\n\n- 🎯 Runes system (`$state`, `$derived`, `$effect`, `$props`)\n- 🎭 New event handling syntax\n- 🧩 Snippets (replacing slots)\n- 🌍 Shared state management\n- 🎨 Dynamic components\n- 🔍 Debugging with `$inspect`\n- 📦 Migration guide from Svelte 4\n\nQuick example:\n```svelte\n\u003cscript\u003e\n  let count = $state(0);\n  let doubled = $derived(count * 2);\n\u003c/script\u003e\n\n\u003cbutton onclick={() =\u003e count++}\u003e\n  Count: {count}, Doubled: {doubled}\n\u003c/button\u003e\n```\n\n## Creating a project\n\nIf you're seeing this, you've probably already done this step. Congrats!\n\n```bash\n# create a new project in the current directory\nnpm create svelte@latest\n\n# create a new project in my-app\nnpm create svelte@latest my-app\n```\n\n## Developing\n\nOnce you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:\n\n```bash\nnpm run dev\n\n# or start the server and open the app in a new browser tab\nnpm run dev -- --open\n```\n\nEverything inside `src/lib` is part of your library, everything inside `src/routes` can be used as a showcase or preview app.\n\n## Building\n\nTo build your library:\n\n```bash\nnpm run package\n```\n\nTo create a production version of your showcase app:\n\n```bash\nnpm run build\n```\n\nYou can preview the production build with `npm run preview`.\n\n\u003e To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment.\n\n## Publishing\n\nGo into the `package.json` and give your package the desired name through the `\"name\"` option. Also consider adding a `\"license\"` field and point it to a `LICENSE` file which you can create from a template (one popular option is the [MIT license](https://opensource.org/license/mit/)).\n\nTo publish your library to [npm](https://www.npmjs.com):\n\n```bash\nnpm publish\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftrasherdk%2Fxmr-sample-svelte","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftrasherdk%2Fxmr-sample-svelte","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftrasherdk%2Fxmr-sample-svelte/lists"}