Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
bite-consent
Advanced tools
BitConsent is a lightweight React library for managing cookie consent in web applications. Easily integrate a customizable cookie banner with options to view the privacy policy or accept cookies with a single click.
Bite Consent is a lightweight React library for managing cookie consent views with customizable descriptions and actions. It provides an easy way to implement cookie consent functionality in your React applications while ensuring compliance with privacy regulations.
You can install Bite Consent via npm or yarn:
npm install bite-consent
or
yarn add bite-consent
To use Bite Consent in your React application, you can now also use the useBiteConsent
hook:
import React from 'react'
import { useBiteConsent } from 'bite-consent'
function App() {
const { consentCookie, show, revoke } = useBiteConsent({
privacyPolicyUrl: 'https://example.com/privacy',
theme: {
mode: 'auto'
}
})
return (
<div className="App">
<header className="App-header">
<h1>Welcome to My Website</h1>
</header>
<main>{/* Your component content */}</main>
{consentCookie ? null : <button onClick={show}>Show Consent Banner</button>}
</div>
)
}
export default App
Name | Type | Default | Description |
---|---|---|---|
privacyPolicyUrl | string | undefined | The URL to your privacy policy. Required. |
text | string | Hey there! We use cookies to keep things running smoothly on our website and to get to know you better. It helps us make your time here as awesome as possible! ❤️ | Custom text to display in the consent banner. |
visibility | auto | visible | hidden | auto | Specifies the visibility of the consent banner. auto displays the view based on the availability of the consent cookie, whereas visible displays and hidden hides it. |
position | Position | CustomPosition | bottom-left | Sets the position of the consent view on the page. See below for details. |
cookieConfig | CookieConfig | - | Configuration options for consent cookies. See below for details. |
theme | Theme | - | Theme object containing color configurations for the consent view. See below for details. |
onAccept | function | () => void | A function to be called when the user accepts the cookie policy. |
Type | Description |
---|---|
top-left | Positions the element at the top left corner. |
top-right | Positions the element at the top right corner. |
bottom-left | Positions the element at the bottom left corner. |
bottom-right | Positions the element at the bottom right corner. |
Property | Type | Description |
---|---|---|
top | number | string | The distance from the top of the container. Accepts number or CSS string. |
left | number | string | The distance from the left of the container. Accepts number or CSS string. |
right | number | string | The distance from the right of the container. Accepts number or CSS string. |
bottom | number | string | The distance from the bottom of the container. Accepts number or CSS string. |
Property | Type | Description |
---|---|---|
name | string | The name or identifier of the consent cookie. |
maxAge | number | The maximum age of the consent cookie in seconds. |
expires | Date | The expiration date of the consent cookie. |
path | string | The path within the website's domain for which the cookie is valid. |
domain | string | The domain for which the cookie is valid. |
secure | boolean | Indicates if the cookie should only be sent over secure connections. |
sameSite | Strict | Lax | None | The SameSite attribute of the consent cookie. |
The theme
object allows customization of the colors used in the consent banner.
Property | Type | Description |
---|---|---|
mode | ThemeMode | The theme mode. |
light | ColorSet | Color configurations for light mode. |
dark | ColorSet | Color configurations for dark mode. |
ColorSet Properties:
background
: Background color of the consent banner.text
: Text color of the consent banner.shadow
: Box shadow of the consent banner.primaryActionBackground
: Background color of primary action buttons.primaryActionHoverBackground
: Background color of primary action buttons on hover.primaryActionText
: Text color of primary action buttons.secondaryActionBackground
: Background color of secondary action buttons.secondaryActionText
: Text color of secondary action buttons.secondaryActionHoverBackground
: Background color of secondary action buttons on hover.Bite Consent is released under the MIT License.
FAQs
BitConsent is a lightweight React library for managing cookie consent in web applications. Easily integrate a customizable cookie banner with options to view the privacy policy or accept cookies with a single click.
The npm package bite-consent receives a total of 1 weekly downloads. As such, bite-consent popularity was classified as not popular.
We found that bite-consent demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.