{"id":19121563,"url":"https://github.com/tsparticles/riot","last_synced_at":"2025-05-05T16:27:49.725Z","repository":{"id":73873936,"uuid":"564554995","full_name":"tsparticles/riot","owner":"tsparticles","description":"Riot.js tsParticles official component","archived":false,"fork":false,"pushed_at":"2025-04-30T19:31:50.000Z","size":315,"stargazers_count":6,"open_issues_count":12,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-04-30T20:37:30.543Z","etag":null,"topics":["hacktoberfest","javascript","riot","tsparticles","typescript"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/tsparticles.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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,"zenodo":null},"funding":{"github":"matteobruni,tsparticles"}},"created_at":"2022-11-11T00:52:08.000Z","updated_at":"2024-12-09T11:17:38.000Z","dependencies_parsed_at":null,"dependency_job_id":"09aba484-e75d-4b08-ac84-332e252c2efa","html_url":"https://github.com/tsparticles/riot","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tsparticles%2Friot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tsparticles%2Friot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tsparticles%2Friot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tsparticles%2Friot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tsparticles","download_url":"https://codeload.github.com/tsparticles/riot/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252533226,"owners_count":21763549,"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":["hacktoberfest","javascript","riot","tsparticles","typescript"],"created_at":"2024-11-09T05:17:48.251Z","updated_at":"2025-05-05T16:27:49.705Z","avatar_url":"https://github.com/tsparticles.png","language":"JavaScript","funding_links":["https://github.com/sponsors/matteobruni,tsparticles","https://github.com/sponsors/matteobruni","https://www.buymeacoffee.com/matteobruni","https://img.buymeacoffee.com/button-api/?text=Buy"],"categories":[],"sub_categories":[],"readme":"[![banner](https://particles.js.org/images/banner3.png)](https://particles.js.org)\n\n# riot-particles\n\n[![npm](https://img.shields.io/npm/v/riot-particles)](https://www.npmjs.com/package/riot-particles) [![npm downloads](https://img.shields.io/npm/dm/riot-particles)](https://www.npmjs.com/package/riot-particles) [![GitHub Sponsors](https://img.shields.io/github/sponsors/matteobruni)](https://github.com/sponsors/matteobruni)\n\nOfficial [tsParticles](https://github.com/matteobruni/tsparticles) RiotJS component\n\n[![Discord](https://particles.js.org/images/discord.png)](https://discord.gg/hACwv45Hme) [![Telegram](https://particles.js.org/images/telegram.png)](https://t.me/tsparticles)\n\n[![tsParticles Product Hunt](https://api.producthunt.com/widgets/embed-image/v1/featured.svg?post_id=186113\u0026theme=light)](https://www.producthunt.com/posts/tsparticles?utm_source=badge-featured\u0026utm_medium=badge\u0026utm_souce=badge-tsparticles\") \u003ca href=\"https://www.buymeacoffee.com/matteobruni\"\u003e\u003cimg src=\"https://img.buymeacoffee.com/button-api/?text=Buy me a beer\u0026emoji=🍺\u0026slug=matteobruni\u0026button_colour=5F7FFF\u0026font_colour=ffffff\u0026font_family=Arial\u0026outline_colour=000000\u0026coffee_colour=FFDD00\"\u003e\u003c/a\u003e\n\n## Installation\n\n```shell\nnpm install riot-particles\n```\n\nor\n\n```shell\nyarn add riot-particles\n```\n\n## Usage\n\n```html\n\u003criot-particles\n    id=\"tsparticles\"\n    options='{{\n        background: {\n            color: \"#000\"\n        },\n        fullScreen: {\n            enable: true\n        },\n        particles: {\n            links: {\n                enable: true\n            },\n            move: {\n                enable: true\n            }\n        }\n    }}'\n    particlesInit=\"{async (main) =\u003e {\n        console.log(main);\n        \n        // this loads the tsparticles package bundle, it is the easiest method for getting everything ready\n        // starting from v2 you can add only the features you need reducing the bundle size\n        await loadFull(main); \n    }}\"\n    particlesLoaded=\"{(container) =\u003e console.log(container)}\"\n/\u003e\n\n\u003cscript\u003e\n    import RiotParticles from \"riot-particles\";\n    import { loadFull } from \"tsparticles\";\n\n    export default {\n        components: {\n            RiotParticles,\n        },\n    };\n\u003c/script\u003e\n\n\u003c!-- or --\u003e\n\n\u003criot-particles\n    id=\"tsparticles\"\n    url=\"https://foo.bar/particles.json\"\n    particlesInit=\"{async (main) =\u003e {\n        console.log(main);\n        \n        // this loads the tsparticles package bundle, it is the easiest method for getting everything ready\n        // starting from v2 you can add only the features you need reducing the bundle size\n        await loadFull(main); \n    }}\"\n    particlesLoaded=\"{(container) =\u003e console.log(container)}\"\n/\u003e\n/\u003e\n```\n\n## Demos\n\nThe demo website is [here](https://particles.js.org)\n\n\u003chttps://particles.js.org\u003e\n\nThere's also a CodePen collection actively maintained and updated [here](https://codepen.io/collection/DPOage)\n\n\u003chttps://codepen.io/collection/DPOage\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftsparticles%2Friot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftsparticles%2Friot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftsparticles%2Friot/lists"}