0.0.1 • Published 11 years ago

basic-auth-old v0.0.1

Weekly downloads
6
License
-
Repository
github
Last release
11 years ago

node-basic-auth

Express now has a builtin BasicAuth middleware. See http://expressjs.com/api.html#middleware

Why?

I needed just very basic auth for NodeJS and I couldn't find a module that worked.

To install:

npm install basic-auth-old
var auth = require('basic-auth')({
  name: 'Auth Box Name',
  accounts: [
    'username:password',
    'user2:pass2'
  ]
})

This is by no means a secure system. This is good if you have a page that just needs to prevent some unauthorized access (such as an intranet).