npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

owlcarousel3

v3.1.0

Published

Modern, touch-enabled responsive carousel plugin for jQuery.

Readme

Owl Carousel 3

Owl Carousel 3 is an independent, community-maintained continuation of the familiar touch-enabled jQuery carousel plugin. It preserves the established $('.owl-carousel').owlCarousel() API, event names, markup, and CSS class names so existing integrations can upgrade with minimal application changes.

jQuery compatibility

Owl Carousel 3 is compatible with jQuery 1.8.3 through 4. Its test matrix covers jQuery 1.8.3, 2.2.4, 3.7.1, and 4.0.0, both with and without the matching jQuery Migrate release.

For the complete compatibility guidance and upgrade notes, see UPGRADEJ4.md.

Upgrade from Owl Carousel 2

Version 3 is a modernization release. The browser-facing plugin API and its owl-* CSS classes remain compatible with Owl Carousel 2. The project now uses a current npm build and browser test stack, and the shipped Sass sources use Dart Sass modules. Review UPGRADEJ4.md before upgrading, especially if you compile a custom Sass theme.

Install

npm install owlcarousel3

Owl Carousel 3 declares jQuery as a peer dependency. npm 7 and newer install a compatible jQuery version automatically when your project does not already provide one. With npm 6 or older, install jQuery separately with npm install jquery owlcarousel3.

CDN

Owl Carousel 3 can be loaded directly from jsDelivr without installing or building the project. Use a versioned URL in production so a future release cannot change the files used by your site.

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/assets/owl.carousel.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/assets/owl.theme.default.min.css">

<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/owl.carousel.min.js"></script>

Load jQuery before Owl Carousel. The default theme stylesheet is optional; omit it when providing your own navigation and dot styles. Unminified files are available at the same URLs by removing .min from the filenames.

Load

Bundlers

import 'owlcarousel3/dist/assets/owl.carousel.css';
import 'owlcarousel3';

Static HTML

Load jQuery first, then Owl Carousel 3. Add the default theme stylesheet if you use its navigation and dot styles.

<link rel="stylesheet" href="/node_modules/owlcarousel3/dist/assets/owl.carousel.min.css">
<link rel="stylesheet" href="/node_modules/owlcarousel3/dist/assets/owl.theme.default.min.css">

<script src="/node_modules/jquery/dist/jquery.js"></script>
<script src="/node_modules/owlcarousel3/dist/owl.carousel.min.js"></script>

Usage

<div class="owl-carousel owl-theme">
  <div>Your content</div>
  <div>Your content</div>
  <div>Your content</div>
</div>
$('.owl-carousel').owlCarousel();

The owl-theme class is optional; omit it when providing your own navigation styles.

Development

Node.js 20.19 or later is required only for developing, building, and testing the project from source. It is not required when using the prebuilt browser files from npm or a CDN.

npm install
npx playwright install chromium
npm run build
npm test

npm run build recreates dist/ and synchronizes the static documentation assets. npm test rebuilds and runs the Chromium test matrix. Maintainers can install all Playwright browsers and run npm run test:browsers for the full Chromium, Firefox, and WebKit matrix. See BUILDING.md for build details and custom Sass theme guidance.

License

This project is distributed under the MIT License. The required copyright notices are retained in the license file and distributed artifacts.