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 🙏

© 2024 – Pkg Stats / Ryan Hefner

cookie-handler-pro

v1.0.7

Published

A professional and flexible cookie handler for JavaScript and TypeScript projects.

Downloads

156

Readme

Cookie Handler

A simple and flexible cookie handler for JavaScript and TypeScript projects.

Installation

To install the package, run:

npm install cookie-handler-pro
or
npm i cookie-handler-pro

Usage

Setting a Cookie

To set a cookie, import the setCookie function and use it with the desired options.

import { setCookie } from 'cookie-handler-pro';

// Set a cookie with various options
setCookie('username', 'john_doe', {
  expires: '7d', // Expires in 7 days
  path: '/',
  domain: 'example.com',
  secure: true,
  sameSite: 'Lax'
});

// Set a cookie to expire in 2 hours
setCookie('session', 'abcd1234', {
  expires: '2h',
  path: '/'
});

Getting a Cookie

To get a cookie, import the getCookie function and use it with the cookie name.

import { getCookie } from 'cookie-handler-pro';
const username = getCookie('username');
console.log(username); // Output: 'john_doe'

Deleting a Cookie

To delete a cookie, import the deleteCookie function and use it with the cookie name and options.

import { deleteCookie } from 'cookie-handler-pro';
deleteCookie('username', { path: '/', domain: 'example.com' });

Usage in Next.js

Setting a Cookie in Next.js

To set a cookie in a Next.js project, you can use the setCookie function within your API routes or in your components. Here’s an example of setting a cookie in an API route:

// pages/api/set-username.ts
import { NextApiRequest, NextApiResponse } from 'next';
import { setCookie } from 'cookie-handler-pro';

export default function handler(req: NextApiRequest, res: NextApiResponse) {
  setCookie('username', 'john_doe', {
    expires: '7d',
    path: '/',
    domain: req.headers.host,
    secure: process.env.NODE_ENV === 'production',
    sameSite: 'Lax'
  });

  res.status(200).json({ message: 'Cookie set successfully' });
}

Getting a Cookie in Next.js

To get a cookie in a Next.js project, you can use the getCookie function within your components or in your API routes. Here’s an example of getting a cookie in a component:

// pages/index.tsx
import { useEffect, useState } from 'react';
import { getCookie } from 'cookie-handler-pro';

const HomePage = () => {
  const [username, setUsername] = useState<string | null>(null);

  useEffect(() => {
    const cookieValue = getCookie('username');
    setUsername(cookieValue);
  }, []);

  return <div>Username: {username}</div>;
};

export default HomePage;

Deleting a Cookie in Next.js

To delete a cookie in a Next.js project, you can use the deleteCookie function within your API routes or in your components. Here’s an example of deleting a cookie in an API route:

// pages/api/delete-username.ts
import { NextApiRequest, NextApiResponse } from 'next';
import { deleteCookie } from 'cookie-handler-pro';

export default function handler(req: NextApiRequest, res: NextApiResponse) {
  deleteCookie('username', { path: '/', domain: req.headers.host });

  res.status(200).json({ message: 'Cookie deleted successfully' });
}

Next.js App route

You can test in your Next.js application

"use client";

import { getCookie, setCookie, deleteCookie } from "cookie-handler-pro";

export default function Home() {
  const handleSetCookie = () => {
    setCookie("username", "john_doe", {
      expires: "7d",
      path: "/",
      domain: window.location.hostname, // Use window.location.hostname instead of req.headers.host
      secure: process.env.NODE_ENV === "production",
      sameSite: "Lax",
    });
  };
  const handleDeleteCookie = () => {
    deleteCookie("username");
  };
  const value = getCookie("username");
  return (
    <>
      <button onClick={handleSetCookie}>Set Cookie</button>
      <br />
      <button onClick={handleDeleteCookie}>deleted Cookie</button>
      <h1>Cookies: {value}</h1>
    </>
  );
}

Author: N R SHAGOR

License: MIT

Keywords

  • cookies
  • JavaScript
  • React
  • Next.js
  • cookie management
  • cookie-handler-pro
  • Next.js App route cookie