Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@js-smart/react-cookie-service
Advanced tools
Simple library to manage cookies in React. Implementation is similar to [Ngx Cookie Service](https://github.com/stevermeister/ngx-cookie-service)
Simple library to manage cookies in React. Implementation is similar to Ngx Cookie Service
npm install --save @js-smart/react-cookie-service
import React, { Component } from 'react';
import { useCookies } from '@js-smart/react-cookie-service';
export default function Example() {
const {
check,
getCookie,
getAllCookies,
setCookie,
deleteCookie,
deleteAllCookies,
} = useCookies();
return (
<div>
<h2>{JSON.stringify(getAllCookies)}</h2>
</div>
);
}
See the table below for React compatability matrix
Version | React Version |
---|---|
2.x.x | 18.0.0 |
1.x.x | 17.0.2 |
getAllCookies
hook returns all cookies of the website
import React, { Component } from 'react';
import { useCookies } from '@js-smart/react-cookie-service';
export default function Example() {
const { getAllCookies } = useCookies();
return (
<div>
<h2>{JSON.stringify(getAllCookies)}</h2>
</div>
);
}
getCookie
hook returns cookie by name in string format
import React, { Component } from 'react';
import { useCookies } from '@js-smart/react-cookie-service';
export default function Example() {
const { getAllCookie } = useCookies();
return (
<div>
<h2>{JSON.stringify(getAllCookie('test'))}</h2>
</div>
);
}
check
hook returns true
if the specified cookie exists otherwise returns false
import React, { Component } from 'react';
import { useCookies } from '@js-smart/react-cookie-service';
export default function Example() {
const { check } = useCookies();
return (
<div>
<h2>{JSON.stringify(check('test'))}</h2>
</div>
);
}
setCookie
hook to sets cookie. It accepts the following arguments. Only the name and value are mandatory and rest of them are optional.
name: string,
value: string,
expiresOrOptions?: number | Date | any,
/* Number of days until the cookies expires or an actual `Date` */
path?: string,
/* Cookie path. Defaults to '/' */
domain?: string,
/* Cookie domain. Defaults to website domain */
secure?: boolean,
/* defaults to false */
sameSite?: 'Lax' | 'None' | 'Strict'
/* Defaults to `Lax` */
//Set cookie with default options
setCookie('token', response.data.token);
setCookie('isLoggedIn', 'true');
//Set a secure cookie that expires in 2 days
setCookie('token', response.data.token,{ expires: 2, domain: '/', secure: true, sameSite: 'Lax' } );
Delete cookies using deleteAllCookies
hook and single cookie using deleteCookie
import React, { Component } from 'react';
import { useCookies } from '@js-smart/react-cookie-service';
export default function Example() {
const { deleteCookie, deleteAllCookies } = useCookies();
useEffect(()=>
{
setCookie('token', response.data.token);
setCookie('isLoggedIn', 'true');
deleteCookie('token');
deleteAllCookies();
},[]);
return (
<div>
<h2>Delete All Cookies</h2>
</div>
);
}
Run nx test react-cookie-service
to execute the unit tests via Jest.
Use the following command to build the library
nx build react-cookie-service
or
npm run build react-cookie-service
Use the following command to publish the library to NPM
npm publish dist/libs/react-cookie-service/
MIT © pavankjadda
FAQs
Simple library to manage cookies in React. Implementation is similar to [Ngx Cookie Service](https://github.com/stevermeister/ngx-cookie-service)
We found that @js-smart/react-cookie-service demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.