react-cookie-manager
Version:
🍪 The ultimate React cookie consent solution. Automatically block trackers, manage consent preferences, and protect user privacy with an elegant UI. Perfect for modern web applications.
27 lines (19 loc) • 617 B
JavaScript
const postinstall = () => {
console.log(`
\x1b[1m🍪 Thank you for installing react-cookie-manager!\x1b[0m
\x1b[36mWant to become 100% GDPR compliant for free? 🇪🇺\x1b[0m
Visit \x1b[1mhttps://cookiekit.io\x1b[0m to:
- Track and store user consent (required for full GDPR compliance)
- Get real-time analytics
- And much more!
\x1b[32mBest of all, it's completely free! 🎉\x1b[0m
\x1b[90m-------------------------------------------\x1b[0m
`);
};
// Run the script
postinstall();
// For CommonJS compatibility
if (typeof exports !== "undefined") {
module.exports = postinstall;
}