Skip to content

Instantly share code, notes, and snippets.

@jeffijoe
Created September 6, 2016 09:42
Show Gist options
  • Save jeffijoe/2818d06e5e0d6126d723a6d027da4f02 to your computer and use it in GitHub Desktop.
Save jeffijoe/2818d06e5e0d6126d723a6d027da4f02 to your computer and use it in GitHub Desktop.
Snippet for my Medium article
var express = require('express')
var app = express()
var session = require('express-session')
app.use(session({
store: require('connect-session-knex')()
}))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment