Skip to content

ilfa/fluxible-plugin-cookie

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Cookie Plugin for Fluxible

Easily read / write cookies from your fluxible application.

Install

Add the package to your project :

npm install --save fluxible-plugin-cookie

Plug it to your fluxible instance :

import cookiePlugin from 'fluxible-plugin-cookie';

app.plug(cookiePlugin());

In your connect/express server side include cookieParser and add req/res to the context :

import cookieParser from 'cookie-parser';

server.use(cookieParser());

server.use((req, res, next) => {

    const context = app.createContext({ req, res });

    // ...

});

Action Context

The module adds the following methods to your action context :

  • setCookie(name, value[, options])
  • getCookie(name)

The setCookie method internally uses the cookie package, so for more informations about the supported options, please have a look at the cookie package's doc.

About

Read & write cookies from your fluxible application.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%