0.2.1 • Published 9 years ago

fluxible-plugin-cookie v0.2.1

Weekly downloads
9
License
MIT
Repository
github
Last release
9 years ago

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 :

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.

0.2.1

9 years ago

0.1.1

9 years ago

0.1.0

9 years ago