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
197,898,649
Last Day
378,339
Last Week
1,625,663
Last Month
6,069,294
Last Year
65,598,786
MIT License
20 Stars
1,380 Commits
25 Forks
2 Watchers
12 Branches
35 Contributors
Updated on Apr 04, 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
43.2%
378,339
Compared to previous day
Last Week
13.4%
1,625,663
Compared to previous week
Last Month
-0.8%
6,069,294
Compared to previous month
Last Year
32.5%
65,598,786
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
license file detected
Details
Reason
0 existing vulnerabilities detected
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
Found 1/25 approved changesets -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
security policy file not detected
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-05-12
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