firebase-cookie-session
v3.0.0
Published
cookie session middleware designed for Firebase Cloud Functions
Downloads
56
Maintainers
Readme
firebase-cookie-session
[![NPM Version][npm-image]][npm-url] [![NPM Downloads][downloads-image]][downloads-url] [![Build Status][travis-image]][travis-url] [![Test Coverage][coveralls-image]][coveralls-url] [![Gratipay][gratipay-image]][gratipay-url]
Simple cookie-based session middleware designed to work with Firebase Cloud Functions.
On Firebase Cloud Functions, only the specially-named __session
cookie is permitted to pass through to the function execution.
This module is forked from express/cookie-session
, but behaves differently in
how it stores the cookie signature to ensure that both the value and signature of the session are stored in __session
.
Install
$ npm install firebase-cookie-session --save
API
var cookieSession = require('cookie-session')
var express = require('express')
var app = express()
app.use(cookieSession({
keys: [/* secret keys */],
// Cookie Options
maxAge: 24 * 60 * 60 * 1000 // 24 hours
}))