Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

js.cookie

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

js.cookie

Object to work with cookies

  • 0.0.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Install

npm install js.cookie --save

Usage


import Cookie from "js.cookie";

// Set cookie

Cookie.set(
	"name",                                       // @string
	"john",                                       // @string, @number, @object
	{                                             // @object (options, not necessary)
		domain:  "example.com",                   // @string                 | default: current domain
		path:    "/path",                         // @string                 | default: "/"
		secure:  true,                            // @boolean                | default: false
		expires: "Tue, 19 Jan 2038 03:14:07 GMT", // @string (in GMT format) | default: session cookie
		live:    1                                // @number (days of life)  | default: session cookie
	}
);                                                // > "john" | @string


// Get cookie

Cookie.get( "name" );                             // > "john" | @string

// Remove cookie

Cookie.remove( "name" );                          // > "john" | @string
Cookie.get( "name" );                             // > undefined

More


Cookie.set( "obj", {foo: "bar"} );                // > {foo: "bar"} | @object

Cookie.get( "obj" );                              // > {foo: "bar"} | @object

Cookie.set( "num", 1 );                           // > 1            | @number

Cookie.get( "num" );                              // > 1            | @number

FAQs

Package last updated on 22 Sep 2015

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc