A lightweight React library for real-time breakpoint detection with support for custom and default Tailwind breakpoints.
npm install breakpointer
Export | Description |
---|---|
BreakpointerProvider |
A context provider to wrap your application |
useBreakpointer |
A hook to access the current breakpoint |
BreakpointerIndicator |
A component that displays the current screen width and an icon based on the breakpoint |
Wrap your application with BreakpointerProvider
:
import React, { StrictMode } from 'react';
import { createRoot } from 'react-dom/client';
import App from './App';
import { BreakpointerProvider } from 'breakpointer';
createRoot(document.getElementById('root')!).render(
<StrictMode>
<BreakpointerProvider>
<App />
</BreakpointerProvider>
</StrictMode>,
)
Use the useBreakpointer
hook to detect breakpoints in your components:
import React from 'react';
import { useBreakpointer } from 'breakpointer';
const MyComponent = () => {
const {
screen, // ex: "md" if currentWidth is in the range from 768 - 1023
currentWidth // innerWidth/viewPort width
} = useBreakpointer();
return (
<div>
{screen === 'sm' && <p>Small screen (640px - 767px)</p>}
{screen === 'md' && <p>Medium screen (768px - 1023px)</p>}
{screen === 'lg' && <p>Large screen (1024px - 1279px)</p>}
<p>Current width: {currentWidth}px</p>
</div>
);
};
export default MyComponent;
Breakpointer comes with the following default breakpoints, which align with Tailwind CSS's default breakpoint system:
const breakpoints = {
sm: 640, // large phones & small tablets (640px - 767px)
md: 768, // Tablets (768px - 1023px)
lg: 1024, // Laptops & large tablets (1024px - 1279px)
xl: 1280, // Desktop & large laptops (1280px - 1535px)
"2xl": 1536 // Wide screen & large desktops (1536px and above)
} as const;
Note: resolveConfig
is only applicable for Tailwind CSS version 3.x.x
.
To use custom Tailwind breakpoints, pass a breakpointsObj
prop to BreakpointerProvider
:
import React from 'react';
import { createRoot } from 'react-dom/client';
import App from './App';
import { BreakpointerProvider } from 'breakpointer';
import resolveConfig from "tailwindcss/resolveConfig"; // resolver Function
import tailwindConfig from "../tailwind.config"; // js/ts tailwind config
const resolvedConfig = resolveConfig(tailwindConfig);
createRoot(document.getElementById('root')!).render(
<BreakpointerProvider breakpointsObj={resolvedConfig.theme.screens}>
<App />
</BreakpointerProvider>,
document.getElementById('root')
);
The BreakpointerIndicator
component displays an icon on the screen along with the current viewport width. This is useful during development for visual feedback.
import { BreakpointerProvider, BreakpointerIndicator } from 'breakpointer';
const App = () => {
return (
<BreakpointerProvider>
<YourApp />
<BreakpointerIndicator /> {/* This component can be placed anywhere */}
</BreakpointerProvider>
);
};
This component will show an icon representing the current breakpoint and display the viewport width in pixels.
We welcome contributions to Breakpointer! Here are some guidelines to help you get started:
Please be respectful and considerate of others when contributing to this project. We aim to foster an inclusive and welcoming community.
- Fork the repository on GitHub
- Clone your fork locally
- Create a new branch for your feature or bugfix
- Make your changes and commit them with clear, descriptive messages
- Push your branch to your fork
- Submit a pull request to the main repository
# Clone the repository
git clone https://github.com/Ashkar2023/breakpointer.git
cd breakpointer
# Install dependencies
npm install
# start tsup in watch mode
npm run dev
- Include a clear description of the changes
- Make sure your code follows the existing style
- Add or update tests as necessary
- Update documentation for any new features
- All tests must pass before the PR can be merged
- Use 4 spaces for indentation
- Follow TypeScript best practices
- Maintain compatibility with React 18+
- Keep bundle size minimal
If you find a bug or have a feature request, please create an issue on the GitHub repository with:
- A clear title and description
- Steps to reproduce the issue
- Expected and actual behavior
- Screenshots if applicable
- Any relevant code snippets