
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
micro-session
Advanced tools
micro-session
is a session manager for Zeit.co's micro framework. Heavily based on express-session.
$ npm install micro-session
# or
$ yarn add micro-session
const session, { MemoryStore } = require('micro-session')
const getSession = session({
store: new MemoryStore(),
secret: 'keyboard cat'
})
module.exports = async (req, res) => {
let session = await getSession(req, res)
if (!session.test) {
session.test = 1
} else {
session.test += 1
}
return {
t: session.test
}
}
Note that sessions are automatically stored if needed after res.end
is called. All session stores that support express-session
should also support micro-session
.
Options are the same as express-session
where applicable. session API is also the same as express-session
.
FAQs
Session manager for micro
The npm package micro-session receives a total of 0 weekly downloads. As such, micro-session popularity was classified as not popular.
We found that micro-session 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.