{"id":13520508,"url":"https://github.com/blaze-slider/blaze-slider","last_synced_at":"2025-03-31T16:31:31.814Z","repository":{"id":40495914,"uuid":"442535665","full_name":"blaze-slider/blaze-slider","owner":"blaze-slider","description":"The Fastest slider library for high performance websites","archived":false,"fork":false,"pushed_at":"2023-08-22T22:13:00.000Z","size":4013,"stargazers_count":602,"open_issues_count":22,"forks_count":30,"subscribers_count":8,"default_branch":"main","last_synced_at":"2024-08-02T05:23:48.916Z","etag":null,"topics":["blaze-slider","carousel","slider","slidershow","swiper"],"latest_commit_sha":null,"homepage":"https://blaze-slider.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/blaze-slider.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}},"created_at":"2021-12-28T17:26:40.000Z","updated_at":"2024-08-01T21:53:11.000Z","dependencies_parsed_at":"2023-02-17T04:02:27.654Z","dependency_job_id":null,"html_url":"https://github.com/blaze-slider/blaze-slider","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blaze-slider%2Fblaze-slider","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blaze-slider%2Fblaze-slider/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blaze-slider%2Fblaze-slider/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blaze-slider%2Fblaze-slider/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/blaze-slider","download_url":"https://codeload.github.com/blaze-slider/blaze-slider/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":222670691,"owners_count":17020513,"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":["blaze-slider","carousel","slider","slidershow","swiper"],"created_at":"2024-08-01T05:02:22.847Z","updated_at":"2024-11-02T03:31:39.798Z","avatar_url":"https://github.com/blaze-slider.png","language":"TypeScript","funding_links":[],"categories":["TypeScript"],"sub_categories":[],"readme":"\u003cimg src=\"https://raw.githubusercontent.com/blaze-slider/blaze-slider/main/assets/BlazeLogo.svg\" height='150' /\u003e\n\n# Blaze Slider\n\n⚡️ [blaze-slider.dev](https://blaze-slider.dev/)\n\nBlaze slider is a high-performance JavaScript UI library for creating sliders.\n\n## The Problem\n\nExisting slider libraries are not designed with performance in mind. They block the main thread for a long time when initializing a slider which results in poor UX and poor [FID](https://web.dev/fid/) metric for your website.\n\nThey also create layout shifts that negatively impact the UX and [CLS](https://web.dev/cls/) metric of your website. These libraries don't provide any idiomatic way to reduce the layout shifts.\n\n## The Solution\n\nBlaze slider is built to fix these issues. It can initialize the slider incredibly fast. It initializes the slider **30x faster** than the Slick slider, and **15x faster** than the Swiper slider.\n\nBlaze Slider allows you to specify the layout configuration via CSS variables which enable slider initialization with \u003cspan className='wow'\u003ezero layout shifts!\u003c/span\u003e - so that your slider will look exactly the same before and after javascript runs.\n\n## Benchmark\n\n| Rank | Library   | Time    | Speed              | Layout Shift Fixable? |\n| ---- | --------- | ------- | ------------------ | --------------------- |\n| 1    | Blaze ⚡️ | 1.4ms   | **1**x             | Yes                   |\n| 2    | Keen      | 6.3ms   | **4.5**x _slower_  | Yes - Manually\\*      |\n| 3    | Embla     | 7.5ms   | **5.3**x _slower_  | Yes - Manually\\*      |\n| 4    | Glide     | 10.0ms  | **7.14**x _slower_ | Yes - Manually\\*      |\n| 5    | Flickity  | 12.3ms  | **8.78**x _slower_ | Yes - Manually\\*      |\n| 6    | Swiper    | 28.3ms  | **20.2**x _slower_ | Yes - Manually\\*      |\n| 7    | Slick     | 49.29ms | **35.2**x _slower_ | Yes - Manually\\*      |\n\nManually\\* means that the slider library itself does not provide an idiomatic way to fix the layout shift. You have to manually add CSS to fix the layout shifts\n\n\u003cbr/\u003e\n\n\u003cimg src='https://raw.githubusercontent.com/blaze-slider/blaze-slider/main/assets/profile.png'/\u003e\n\n\u003cbr/\u003e\n\nBenchmark measures the time taken to create a slider with 10 slides by each slider. Benchmark is measured on Apple M1 Pro CPU with 6X slowdown on Google Chrome 103. The Average of 20 runs is taken.\n\nSee [Benchmark Repo](https://github.com/blaze-slider/blaze-slider/tree/main/benchmark) to see how these libraries are tested\n\n\u003cbr/\u003e\n\n## Highlights\n\n- Fastest Slider Library\n- Packed with Features\n- Zero Layout Shifts\n- Full TypeScript support\n- CSS Media-Query-based Responsive configuration\n- No slide cloning\n- Extremely small bundle size (2kB)\n\n\u003cbr/\u003e\n\n## Documentation\n\nYou can check out the documentation on the website [blaze-slider.dev](https://blaze-slider.dev/)\n\nThe documentation is divided into several sections:\n\n- [Getting Started](https://blaze-slider.dev/docs/intro)\n- [Installation](http://blaze-slider.dev/docs/installation)\n- [Tutorial](https://blaze-slider.dev/docs/category/tutorial)\n- [API Reference](https://blaze-slider.dev/docs/category/api)\n\n\u003cbr/\u003e\n\n## Framework Integrations\n\nBlaze Slider is framework agnostic - it can work with all frameworks, all it requires is the DOM element on which you want to initialize the slider and configuration object. [Learn More](https://blaze-slider.dev/docs/framework)\n\nHere are some prebuilt integrations:\n\n- React - [react-blaze-slider](https://github.com/blaze-slider/blaze-slider/tree/main/blaze-slider-react)\n\n## License\n\nBlaze-slider is MIT licensed.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblaze-slider%2Fblaze-slider","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fblaze-slider%2Fblaze-slider","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblaze-slider%2Fblaze-slider/lists"}