Code Monkey home page Code Monkey logo

connect-session-firestore's Introduction

Connect Session Firestore

Travis Codecov Greenkeeper badge

connect-session-firestore is a Connect/Express compatible session store backed by the Firebase SDK.

Installation

firebase-admin must be added as a peer dependency, or you're gonna have a bad time.

$ npm install firebase-admin connect-session-firestore --save

Options

  • database A pre-initialized Firebase Cloud Firestore app.
  • sessions (optional) A document reference string for session storage. (defaults to "sessions")
  • reapInterval (optional) How often expired sessions should be cleaned up (defaults to 21600000) (6 hours in milliseconds)
  • reapCallback (optional) A callback function to execute whenever a session clean up occurs

Usage

Initialize firebase-admin database and pass the instance to FirestoreStore. Connecting to the database requires a credential cert via a JSON file from the Firebase IAM & Admin Console.

const connect = require('connect');
const FirestoreStore = require('connect-session-firestore')(connect);
const firebase = require('firebase-admin');
const ref = firebase.initializeApp({
  credential: firebase.credential.cert('path/to/serviceAccountCredentials.json'),
  databaseURL: 'https://databaseName.firebaseio.com'
});

connect()
  .use(connect.cookieParser())
  .use(connect.session({
    store: new FirestoreStore({
      database: ref.firestore()
    }),
    secret: 'keyboard cat'
  }));
  • Express

    NOTE: In Express 4 express-session must be passed to the function connect-session-firestore exports in order to extend express-session.Store:

const express = require('express');
const session = require('express-session');
const FirestoreStore = require('connect-session-firestore')(session);
const firebase = require('firebase-admin');
const ref = firebase.initializeApp({
  credential: firebase.credential.cert('path/to/serviceAccountCredentials.json'),
  databaseURL: 'https://databaseName.firebaseio.com'
});

express()
  .use(session({
    store: new FirestoreStore({
      database: ref.firestore()
    }),
    secret: 'keyboard cat'
    resave: true,
    saveUninitialized: true
  }));

Tests

To run tests against connect-session-firestore you will need your own Firebase Database app available.

Checkout the repo locally and create two files in the project root:

  • .env
  • serviceAccountCredentials.json

With the content:

.env

FIREBASE_SERVICE_ACCOUNT=./serviceAccountCredentials.json
FIREBASE_DATABASE_URL=https://[databaseName].firebaseio.com

serviceAccountCredentials.json

{
  "type": "service_account",
  "project_id": "",
  "private_key_id": "",
  "private_key": "",
  "client_email": "",
  "client_id": "",
  "auth_uri": "https://accounts.google.com/o/oauth2/auth",
  "token_uri": "https://accounts.google.com/o/oauth2/token",
  "auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs",
  "client_x509_cert_url": ""
}

Install the dev dependencies:

$ npm install

Run the tests:

$ npm test

License

connect-session-firestore is licensed under the MIT license.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.