
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
authstarter
Advanced tools
Add mongodb based authentication to an express web app with three lines of code
#Auth Starter
This is the authentication code I find myself implementing on every project that needs a basic password protected demo or admin site. The flexibility of passport is nice, but for a simple app with few users all you need is something that works with minimal effort.
The following routes are added to the app:
npm install authstarter
To create necessary auth related view files, run
node
require("authstarter").setup();
var partials = require('express-partials');
var AuthStarter = require("authstarter");
var app = express();
app.use(partials());
app.configure(function() {
app.use(express.cookieParser());
app.use(express.session({
secret: 'secret'
}));
app.use(express.bodyParser());
AuthStarter.configure(app);
app.use(app.router);
app.use(express.static(__dirname + '/static'));
app.engine('jshtml', require('jshtml-express'));
app.set('view engine', 'jshtml');
});
app.get('/', AuthStarter.ensureAuthenticated, function(req, res) {
req.send('Secured content');
});
The user store is a mongodb collection containing documents like:
{
_id: ObjectId("537159a186915c696a000521"),
username: "username",
password: "password",
roles: {
admin: false
}
}
Passwords may be either plain text or hashed in the format used by https://github.com/davidwood/node-password-hash
Users may be created manually or using one of the provided functions that include password hashing.
AuthStarter.addUser("username", "password", {"user": true, "admin":false});
AuthStarter.setPassword(username, password);
var settings = {
mongoUrl: process.env.MONGOHQ_URL,
baseUrl: process.env.SECURE_DOMAIN,
userCollection: process.env.USER_COLLECTION || 'AdminUsers',
hashOptions: {
algorithm: "sha512"
},
maxAttempts: 3,
layout: "blanklayout",
title: "Log In",
customCss: ""
};
AuthStarter.configure(app, settings);
FAQs
Add mongodb based authentication to an express web app with three lines of code
We found that authstarter 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.