
Security News
Open Source CAI Framework Handles Pen Testing Tasks up to 3,600× Faster Than Humans
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
react-cookie
Advanced tools
The react-cookie package is a library for handling cookies in React applications. It provides hooks and components to easily set, get, and remove cookies, making it simple to manage user sessions and preferences.
Setting a Cookie
This feature allows you to set a cookie using the `useCookies` hook. In this example, a cookie named 'user' is set with the value 'John Doe' when the login button is clicked.
import { useCookies } from 'react-cookie';
function App() {
const [cookies, setCookie] = useCookies(['user']);
const handleLogin = () => {
setCookie('user', 'John Doe', { path: '/' });
};
return (
<div>
<button onClick={handleLogin}>Login</button>
</div>
);
}
Getting a Cookie
This feature allows you to get a cookie using the `useCookies` hook. In this example, the value of the 'user' cookie is displayed in a paragraph.
import { useCookies } from 'react-cookie';
function App() {
const [cookies] = useCookies(['user']);
return (
<div>
<p>User: {cookies.user}</p>
</div>
);
}
Removing a Cookie
This feature allows you to remove a cookie using the `useCookies` hook. In this example, the 'user' cookie is removed when the logout button is clicked.
import { useCookies } from 'react-cookie';
function App() {
const [cookies, setCookie, removeCookie] = useCookies(['user']);
const handleLogout = () => {
removeCookie('user', { path: '/' });
};
return (
<div>
<button onClick={handleLogout}>Logout</button>
</div>
);
}
js-cookie is a simple, lightweight JavaScript API for handling cookies. It is not specific to React but can be used in any JavaScript project. Compared to react-cookie, js-cookie requires more manual handling of cookies but offers more flexibility for non-React environments.
universal-cookie is a library for handling cookies in both client and server environments. It provides a consistent API for managing cookies in JavaScript and is often used in conjunction with server-side rendering frameworks. Compared to react-cookie, universal-cookie is more versatile for isomorphic applications.
react-use-cookie is a React hook for managing cookies. It is similar to react-cookie but offers a simpler API with fewer features. It is suitable for projects that need basic cookie management without the additional functionality provided by react-cookie.
Load, save and remove cookies on the browser or Node.js
npm install react-cookie --save
To be able to access user cookies while doing server-rendering, you can use plugToRequest
or setRawCookie
.
Load the cookie value.
Returns undefined
if the cookie does not exist.
Deserialize any cookie starting with { or [ unless dotNotParse
is true
.
Find all the cookies with a name that match the regex.
Returns an object
with the cookie name as the key.
Set a cookie
Remove a cookie
Load the user cookies so you can do server-rendering and match the same result.
Also send back to the user the new cookies.
Work with connect or express.js by using the cookieParser middleware first.
Use const unplug = plugToRequest(req, res)
just before your renderToString
.
Returns unplug()
function so it stops setting cookies on the response.
Load the user cookies so you can do server-rendering and match the same result.
Use setRawCookie(headers.cookie)
just before your renderToString
.
Make sure it is the raw string from the request headers.
Support all the cookie options from the RFC 6265.
cookie path
Use/
as the path if you want your cookie to be accessible on all pages.
absolute expiration date for the cookie (Date object)
relative max age of the cookie from when the client receives it (seconds)
domain for the cookie
Usesub.domain.com
if you want to access the cookie on a specific sub-domain only.
Use.yourdomain.com
if you want to access the cookie in all your subdomains.
Is only accessible through HTTPS? true or false
Is only the server can access the cookie? true or false
import { Component } from 'react';
import cookie from 'react-cookie';
import LoginPanel from './LoginPanel';
import Dashboard from './Dashboard';
export default class MyApp extends Component {
componentWillMount() {
this.state = { userId: cookie.load('userId') };
}
onLogin(userId) {
this.setState({ userId });
cookie.save('userId', userId, { path: '/' });
}
onLogout() {
cookie.remove('userId', { path: '/' });
}
render() {
if (!this.state.userId) {
return <LoginPanel onSuccess={this.onLogin.bind(this)} />;
}
return <Dashboard userId={this.state.userId} />;
}
}
This project is under the MIT license. You are free to do whatever you want with it.
FAQs
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
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.