
Security News
CISA Kills Off RSS Feeds for KEVs and Cyber Alerts
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.
connect-memcached
Advanced tools
Memcached session store, using node-memcached for communication with cache server.
npm:
npm install connect-memcached express-session
yarn:
yarn add connect-memcached express-session
var express = require("express"),
session = require("express-session"),
app = express(),
MemcachedStore = require("connect-memcached")(session);
app.use(
session({
secret: "CatOnKeyboard",
key: "test",
proxy: "true",
resave: false,
saveUninitialized: false,
store: new MemcachedStore({
hosts: ["127.0.0.1:11211"],
secret: "123, easy as ABC. ABC, easy as 123" // Optionally use transparent encryption for memcached session data
})
})
);
app.get("/", function(req, res) {
if (req.session.views) {
++req.session.views;
} else {
req.session.views = 1;
}
res.send("Viewed <strong>" + req.session.views + "</strong> times.");
});
app.listen(9341, function() {
console.log("Listening on %d", this.address().port);
});
hosts
(Optional) Memcached servers locations, can be string, array or hash. Default is 127.0.0.1:11211
.prefix
(Optional) Prefix for each memcached key, in case you are sharing your memcached servers with something generating its own keys.ttl
(Optional) Default TTL parameter for the session data (in seconds).secret
(Optional) Secret used to encrypt/decrypt session contents. Setting it enables data encryption, which is handled by kruptein module.algorithm
(Optional) Cipher algorithm from crypto.getCiphers()
. Default is aes-256-gcm
.hashing
(Optional) Hash algorithm from crypto.getHashes()
. Default is sha512
.When upgrading from pre v2 and using data encryption please flush all the session entries from memcached before rolling the update.
Sessions without data encryption are not affected.
If You're upgrading from the pre v1.0.0 version of this library and use encryption for session data be sure to remove all session entries created with previous version.
Upgrading library without taking appropriate action will result in SyntaxError
exceptions during JSON parsing of decoded entries.
Sessions without encryption are not affected.
Big thanks for the contributors! See the actual list here!
(The MIT License)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Memcached session store for Connect
The npm package connect-memcached receives a total of 3,172 weekly downloads. As such, connect-memcached popularity was classified as popular.
We found that connect-memcached demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.