Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
hoagie-session
Advanced tools
"Session" storage for hoagie applications.
$ npm install hoagie hoagie-session --save
var hoagie = require('hoagie');
var session = require('hoagie-session');
var app = hoagie();
// On the first request, this will write a JSON file
// in the user's HOME directory named after the program.
// For example, if the program name is `math`, the file
// name is `~/.math` by default. You may specify another
// filename to session() if you like;
app.use(session());
app.use(function(req, res, next) {
// The contents of the session file will be read, parsed,
// and assigned to `req.session`.
req.session; // {}
// You may mutate req.session during the request and the
// changes will be saved to the file.
req.session.username = req.get('LOGNAME');
next();
});
app.run(process.argv.slice(2));
FAQs
Session storage for hoagie applications
The npm package hoagie-session receives a total of 0 weekly downloads. As such, hoagie-session popularity was classified as not popular.
We found that hoagie-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
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.