![yar Logo](https://raw.github.com/walmartlabs/yar/master/images/yar.png)
A hapi cookie jar
![Build Status](https://secure.travis-ci.org/walmartlabs/yar.png)
The yar plugin adds a simple way to set a persistant state (using an Iron encrypted cookie) across requests.
It has support for session management - either stored on the client via cookie, in server memory, or using an external database (via custom storage code).
For example, the first handler sets the jar content and the second utilizes it:
var handler1 = function () {
this.plugins.yar = {
key: 'value'
};
return this.reply();
};
var handler2 = function () {
this.reply(this.state.yar.key);
};
The plugin requires a password for encryption, and the ext
permission:
var options = {
permissions: {
ext: true
},
plugin: {
name: 'yar' ,
isSingleUse: false,
options: {
password: 'password',
isSecure: true
}
}
};
var server = new Hapi.Server();
server.plugin().require('yar', options, function (err) { });
Sessions