Author -  Sai gowtham

How to get the cookie in React

In this tutorial, we are going to learn about how to get the cookie from a browser in React using the react-cookie package.

The react-cookie package helps us to get and set the cookies from the browser.

Let’s install it, by running the following command.

npm install react-cookie

First, import the CookiesProvider component from the react-cookie package and wrap your root app component with it.

index.js
import React from "react";
import ReactDOM from "react-dom";
import { CookiesProvider } from "react-cookie";import App from "./App";

const rootElement = document.getElementById("root");
ReactDOM.render(
  <CookiesProvider>    <App />  </CookiesProvider>,  rootElement
);

Now, inside your React component, you can access the cookie by using a useCookies() hook.

App.js
import React from "react";
import { useCookies } from "react-cookie";
export default function App() {
  const [cookies, setCookie] = useCookies();
  return (
    <div className="App">
      <h1>React cookies</h1>
      {cookies.user && <p>{cookies.user}</p>}    </div>
  );
}

The cookies object is holding the all cookies, you have created in your app.

In class-based components, you can get the cookie by using a withCookies() higher-order component.

App.js
import React, { Component } from "react";
import { withCookies } from "react-cookie";
class App extends Component {

  state = {  // getting the cookie
    user: this.props.cookies.get("user") || ""  };

  render() {
    const { user } = this.state;    return (
      <div className="App">
        {user && <p>{user}</p>}      </div>
    );
  }
}

export default withCookies(App);

These are some cases you can’t get a cookie in React:

  • If you don’t set a cookie path as / then you can’t access a cookie from all pages.

  • If you set an httpOnly cookie to the response, then you can’t access it inside the react app, because the browser directly embeds the cookie to an HTTP header.

Css Tutorials & Demos

How rotate an image continuously in CSS

In this demo, we are going to learn about how to rotate an image continuously using the css animations.

How to create a Instagram login Page

In this demo, i will show you how to create a instagram login page using html and css.

How to create a pulse animation in CSS

In this demo, i will show you how to create a pulse animation using css.

Creating a snowfall animation using css and JavaScript

In this demo, i will show you how to create a snow fall animation using css and JavaScript.

Top Udemy Courses

JavaScript - The Complete Guide 2023 (Beginner + Advanced)
JavaScript - The Complete Guide 2023 (Beginner + Advanced)
116,648 students enrolled
52 hours of video content
$14.99 FROM UDEMY
React - The Complete Guide (incl Hooks, React Router, Redux)
React - The Complete Guide (incl Hooks, React Router, Redux)
631,582 students enrolled
49 hours of video content
$24.99 FROM UDEMY
Vue - The Complete Guide (w/ Router, Vuex, Composition API)
Vue - The Complete Guide (w/ Router, Vuex, Composition API)
203,937 students enrolled
31.5 hours of video content
$14.99 FROM UDEMY