{"id":47840292,"url":"https://github.com/builtbyjonas/paralux","last_synced_at":"2026-04-03T20:37:50.911Z","repository":{"id":348735197,"uuid":"1198625926","full_name":"builtbyjonas/paralux","owner":"builtbyjonas","description":"Physics-driven smooth scroll \u0026 parallax engine","archived":false,"fork":false,"pushed_at":"2026-04-02T16:16:18.000Z","size":224,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-03T03:32:34.731Z","etag":null,"topics":["animation","javascript","library","parallax","paralux","physics","react","scroll"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/paralux","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/builtbyjonas.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":"builtbyjonas"}},"created_at":"2026-04-01T15:47:13.000Z","updated_at":"2026-04-02T16:16:31.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/builtbyjonas/paralux","commit_stats":null,"previous_names":["builtbyjonas/paralux"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/builtbyjonas/paralux","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/builtbyjonas%2Fparalux","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/builtbyjonas%2Fparalux/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/builtbyjonas%2Fparalux/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/builtbyjonas%2Fparalux/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/builtbyjonas","download_url":"https://codeload.github.com/builtbyjonas/paralux/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/builtbyjonas%2Fparalux/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31375772,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-03T17:53:18.093Z","status":"ssl_error","status_checked_at":"2026-04-03T17:53:17.617Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["animation","javascript","library","parallax","paralux","physics","react","scroll"],"created_at":"2026-04-03T20:37:50.195Z","updated_at":"2026-04-03T20:37:50.902Z","avatar_url":"https://github.com/builtbyjonas.png","language":"TypeScript","funding_links":["https://github.com/sponsors/builtbyjonas"],"categories":[],"sub_categories":[],"readme":"# Paralux\n\n**Paralux** is a modern, high-performance, physics-driven scroll engine designed for React, Next.js, and vanilla web applications. It replaces native scrolling with a fully controllable virtual scroll system, enabling smooth interpolation, inertia, parallax effects, and scroll-based animations.\n\n\u003e [!CAUTION]\n\u003e Paralux is still in early development. The API is not yet stable and may change without a major version bump. Use with caution in production environments and expect breaking changes as the library evolves.\n\n## Features\n\n- **Smooth Scrolling Engine:** Virtual scroll layer using `requestAnimationFrame`.\n- **Physics System:** Built-in Spring and LERP physics mechanics mimicking native iOS-like inertia.\n- **Parallax System:** Attribute-based or programmatic parallax mapping.\n- **Auto-Recalculation:** Smart viewport caching using `ResizeObserver` \u0026 `MutationObserver` ensures your scroll limits never break during dynamic DOM updates.\n- **WebGL / GPU Sync:** Built-in `.webgl` plugin syncing scroll vectors and mathematically deduced `skew` limits natively to your shaders.\n- **React Support First-Class:** Includes a robust set of typed providers and hooks.\n\n## Installation\n\n```bash\nnpm install paralux normalize-wheel\n# or\npnpm add paralux normalize-wheel\n```\n\n_(Note: `normalize-wheel` is required for virtual scroll hijacking)_\n\n## Quick Start (Vanilla)\n\n```ts\nimport { Paralux } from \"paralux\";\nimport { parallax, velocity } from \"paralux/modules\";\n\nconst paralux = new Paralux({\n  smooth: true,\n  virtualScroll: true,\n  physics: \"spring\",\n  stiffness: 150,\n  damping: 20,\n});\n\nparalux.use(parallax());\nparalux.use(velocity());\n```\n\n## Quick Start (React)\n\n```tsx\nimport { ParaluxProvider, Parallax, useParalux } from \"paralux/react\";\n\nexport default function App() {\n  return (\n    \u003cParaluxProvider options={{ smooth: true, virtualScroll: true }}\u003e\n      \u003cParallax speed={0.5}\u003e\n        \u003ch1\u003eThis moves half as fast!\u003c/h1\u003e\n      \u003c/Parallax\u003e\n\n      {/* Your App */}\n    \u003c/ParaluxProvider\u003e\n  );\n}\n```\n\n## Documentation\n\nFor a deep dive into the APIs and advanced usage, see the `docs/` directory:\n\n- [Getting Started](docs/getting-started.md)\n- [Core API Reference](docs/api.md)\n- [Available Plugins](docs/plugins.md)\n- [React Reference](docs/react.md)\n- [Physics \u0026 WebGL Guide](docs/physics-and-webgl.md)\n\n---\n\n**License**: MIT  \n**Author**: ByJonas / Jonas Franke\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbuiltbyjonas%2Fparalux","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbuiltbyjonas%2Fparalux","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbuiltbyjonas%2Fparalux/lists"}