Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

bs-breakpoints

Package Overview
Dependencies
Maintainers
0
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bs-breakpoints

A plugin which detect Bootstrap 5 breakpoints and emit when there is a change

  • 2.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

bs-breakpoints

npm version Build Status Coveralls JS gzip size

A plugin which detect Bootstrap 5 breakpoints and emit when there is a change.

You can use it on React and Angular too because this plugin is written with the most used JavaScript framework: VanillaJS.

Features:

  • Works with Bootstrap 5
  • Works without dependencies
  • Detect custom breakpoints in CSS properties
  • Built in ES and UMD to be used everywhere
  • Small, only 2kb and less if you gzip it
  • Allow to add or remove breakpoints

Table of contents

Install

With npm or yarn

npm install bs-breakpoints --save

// yarn
yarn add bs-breakpoints

CDN

CDNLink
jsDelivr ES versionhttps://cdn.jsdelivr.net/npm/bs-breakpoints/dist/bs-breakpoints.js
jsDelivr UMD versionhttps://cdn.jsdelivr.net/npm/bs-breakpoints/dist/bs-breakpoints.umd.cjs

How to use it

You should wait for the document ready event and call the init method to detect breakpoint changes. We expose one global variable available everywhere: bsBreakpoints

In browser with UMD version:

document.addEventListener('DOMContentLoaded', function () {
  const detector = new bsBreakpoints.BreakpointDetector();
})

Use it with npm

import { BreakpointDetector } from 'bs-breakpoints';

For UMD examples check out this file.

This library is ES and UMD ready so you can use it everywhere.

Methods

constructor

Will detect the current breakpoint and emit init.bs.breakpoint event.

It'll add a listener on the window resize event and emit new.bs.breakpoint event.

addBreakpoint

Allow you to add a new breakpoint.

import { BreakpointDetector } from 'bs-breakpoints';

const detector = new BreakpointDetector();

detector.addBreakpoint('largest', { min: 1600, max: Infinity });

removeBreakpoint

Allow you to remove an existing breakpoint.

import { BreakpointDetector } from 'bs-breakpoints';

const detector = new BreakpointDetector();

detector.removeBreakpoint('largest');

getBreakPoints

Detect and update breakpoints base on CSS properties

getCurrentBreakpoint

Detect and return the current breakpoint.

isGreaterThan

Allow you to know if the current breakpoint is greater than the one supplied.

isLowerThan

Allow you to know if the current breakpoint is lower than the one supplied.

Events

init.bs.breakpoint

Emitted just once when a new instance of BreakpointDetector is created.

This event contains the current breakpoint in the detail attribute.

new.bs.breakpoint

This event is emitted when there is a breakpoint changes.

This event contains the current breakpoint in the detail attribute.

License

MIT

Keywords

FAQs

Package last updated on 01 Aug 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc