Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
@outlinerisk/connect-pg-simple
Advanced tools
A simple, minimal PostgreSQL session store for Connect/Express, with user tracking!
A simple, minimal PostgreSQL session store for Express/Connect
npm install connect-pg-simple
Once npm installed the module, you need to create the "session" table in your database.
For that you can use the table.sql file provided with the module:
psql mydatabase < node_modules/connect-pg-simple/table.sql
Or simply play the file via a GUI, like the pgAdminIII queries tool.
Or instruct this module to create it itself, by setting the createTableIfMissing
option.
Note that connect-pg-simple
requires PostgreSQL version 9.5 or above.
Examples are based on Express 4.
Simple example:
const session = require('express-session');
app.use(session({
store: new (require('connect-pg-simple')(session))({
// Insert connect-pg-simple options here
}),
secret: process.env.FOO_COOKIE_SECRET,
resave: false,
cookie: { maxAge: 30 * 24 * 60 * 60 * 1000 } // 30 days
// Insert express-session options here
}));
Advanced example showing some custom options:
const pg = require('pg');
const expressSession = require('express-session');
const pgSession = require('connect-pg-simple')(expressSession);
const pgPool = new pg.Pool({
// Insert pool options here
});
app.use(expressSession({
store: new pgSession({
pool : pgPool, // Connection pool
tableName : 'user_sessions' // Use another table-name than the default "session" one
// Insert connect-pg-simple options here
}),
secret: process.env.FOO_COOKIE_SECRET,
resave: false,
cookie: { maxAge: 30 * 24 * 60 * 60 * 1000 } // 30 days
// Insert express-session options here
}));
Listed in the order they will be picked up. If multiple are defined, then the first in the lists that is defined will be used, the rest ignored.
pg-promise
to be used for DB communications.conString
to specify a PostgreSQL Pool connection object and this module will create a new pool for you.conObject
to specify a PostgreSQL connection string and this module will create a new pool for you. If the connection string is in the DATABASE_URL
environment variable (as you do by default on eg. Heroku) – then this module fallback to that if this option is not specified.true
then creates the table in the case where the table does not already exist. Defaults to false
.true
disables the updating of TTL in the database when using touch. Defaults to false.session
, then you can specify that here.60
seconds. If set to false
no automatic pruning will happen. By default every delay is randomized between 50% and 150% of set value, resulting in an average delay equal to the set value, but spread out to even the load on the database. Automatic pruning will happen pruneSessionInterval
seconds after the last pruning (includes manual prunes).false
, then the exact value of pruneSessionInterval
will be used in all delays. No randomization will happen. If multiple instances all start at once, disabling randomization can mean that multiple instances are all triggering pruning at once, causing unnecessary load on the database. Can also be set to a method, taking a numeric delay
parameter and returning a modified one, thus allowing a custom delay algorithm if wanted.console.error()
, but can be useful to override if one eg. uses Bunyan for logging.Promise
that will resolve when the database has shut down.false
– which can be useful if one wants improved control of the pruning.Available as part of the Tidelift Subscription.
The maintainers of connect-pg-simple and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source packages you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact packages you use. Learn more.
1.0.1
FAQs
A simple, minimal PostgreSQL session store for Connect/Express, with user tracking!
The npm package @outlinerisk/connect-pg-simple receives a total of 283 weekly downloads. As such, @outlinerisk/connect-pg-simple popularity was classified as not popular.
We found that @outlinerisk/connect-pg-simple demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.