SkillAgentSearch skills...

UseCookie

🍪 React Hook for Cookies based on js-cookie 🍪

Install / Use

/learn @rrudol/UseCookie
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

useCookie - React Hook

React Hook for Cookies based on js-cookie

Instalation

npm install @use-hook/use-cookie --save

Usage

import { useCookie } from "@use-hook/use-cookie";

function App() {
  const [name, setName] = useCookie("name", "Stefan");

  return (
    <div>
      <input
        type="text"
        placeholder="Provide your name"
        value={name}
        onChange={e => setName(e.target.value, { expires: 1 })}
      />
    </div>
  );
}

Example

License

MIT

Related Skills

View on GitHub
GitHub Stars33
CategoryDevelopment
Updated4mo ago
Forks4

Languages

JavaScript

Security Score

77/100

Audited on Nov 6, 2025

No findings