Gathering detailed insights and metrics for @ant-design/react-slick
Gathering detailed insights and metrics for @ant-design/react-slick
Gathering detailed insights and metrics for @ant-design/react-slick
Gathering detailed insights and metrics for @ant-design/react-slick
npm install @ant-design/react-slick
Typescript
Module System
Node Version
NPM Version
96.7
Supply Chain
99.2
Quality
81.3
Maintenance
100
Vulnerability
100
License
JavaScript (100%)
Total Downloads
200,642,807
Last Day
66,630
Last Week
1,482,056
Last Month
6,339,334
Last Year
66,194,442
MIT License
21 Stars
1,380 Commits
25 Forks
2 Watchers
12 Branches
36 Contributors
Updated on May 20, 2025
Minified
Minified + Gzipped
Latest Version
1.1.2
Package Id
@ant-design/react-slick@1.1.2
Unpacked Size
812.08 kB
Size
172.92 kB
File Count
26
NPM Version
10.2.4
Node Version
20.11.1
Published on
Apr 01, 2024
Cumulative downloads
Total Downloads
Last Day
4.5%
66,630
Compared to previous day
Last Week
-13.2%
1,482,056
Compared to previous week
Last Month
2.1%
6,339,334
Compared to previous month
Last Year
32.4%
66,194,442
Compared to previous year
1
49
npm
1npm install @ant-design/react-slick --save
yarn
1yarn add @ant-design/react-slick
Also install slick-carousel for css and font
1npm install slick-carousel 2 3// Import css files 4import "slick-carousel/slick/slick.css"; 5import "slick-carousel/slick/slick-theme.css";
or add cdn link in your html
1<link 2 rel="stylesheet" 3 type="text/css" 4 charset="UTF-8" 5 href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.min.css" 6/> 7<link 8 rel="stylesheet" 9 type="text/css" 10 href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick-theme.min.css" 11/>
1import React from "react"; 2import Slider from "@ant-design/react-slick"; 3 4export default function SimpleSlider() { 5 var settings = { 6 dots: true, 7 infinite: true, 8 speed: 500, 9 slidesToShow: 1, 10 slidesToScroll: 1 11 }; 12 return ( 13 <Slider {...settings}> 14 <div> 15 <h3>1</h3> 16 </div> 17 <div> 18 <h3>2</h3> 19 </div> 20 <div> 21 <h3>3</h3> 22 </div> 23 <div> 24 <h3>4</h3> 25 </div> 26 <div> 27 <h3>5</h3> 28 </div> 29 <div> 30 <h3>6</h3> 31 </div> 32 </Slider> 33 ); 34}
For all available props, go here.
For all available methods, go here
Want to run demos locally
1git clone https://github.com/ant-design/react-slick 2cd react-slick 3npm install 4npm start 5open http://localhost:8080
Join our discord channel to discuss react-slick bugs and ask for help
Please see the contributing guidelines
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 1/25 approved changesets -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
security policy file not detected
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-06-30
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More