Basic auth in node.js

Super easy – already supported if you use express/connect.

Example (using express):

var express = require('express');
 
function giada de laurentiis pokies Pokies authorize(username, password) {
    return 'username' === username & 'password' === password;
}
 
var app = express.createServer(
    express.basicAuth(authorize)
);

Example using connect

2 thoughts on “Basic auth in node.js

  1. Pingback: Tanya Nam » Blog Archive » Why I love Heroku

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s