What is http-auth?
The http-auth npm package provides basic and digest access authentication for Node.js applications. It allows developers to secure their web applications by requiring users to provide a username and password before accessing certain routes or resources.
What are http-auth's main functionalities?
Basic Authentication
This feature allows you to set up basic authentication for your Node.js server. Users will need to provide a username and password to access the protected routes.
const http = require('http');
const auth = require('http-auth');
const basic = auth.basic({
realm: 'Simon Area',
file: __dirname + '/users.htpasswd' // user:password in htpasswd format
});
http.createServer(basic, (req, res) => {
res.end(`Welcome to private area - ${req.user}!`);
}).listen(1337, () => {
console.log('Server running at http://127.0.0.1:1337/');
});
Digest Authentication
This feature allows you to set up digest authentication for your Node.js server. Digest authentication is more secure than basic authentication as it uses MD5 hashing.
const http = require('http');
const auth = require('http-auth');
const digest = auth.digest({
realm: 'Simon Area',
file: __dirname + '/users.htdigest' // user:realm:password in htdigest format
});
http.createServer(digest, (req, res) => {
res.end(`Welcome to private area - ${req.user}!`);
}).listen(1337, () => {
console.log('Server running at http://127.0.0.1:1337/');
});
Other packages similar to http-auth
express-basic-auth
The express-basic-auth package provides basic authentication middleware for Express applications. It is simpler to use with Express compared to http-auth and integrates seamlessly with the Express framework.
passport-http
The passport-http package is a Passport strategy for HTTP Basic and Digest authentication. It is part of the Passport.js ecosystem, which provides a wide range of authentication strategies and is highly extensible.
basic-auth
The basic-auth package is a simple tool for parsing basic authentication headers. It does not provide full authentication middleware but can be used in conjunction with other packages to implement basic authentication.
http-auth
Node.js package for HTTP basic and digest access authentication.
Installation
Via git (or downloaded tarball):
$ git clone git://github.com/gevorg/http-auth.git
Via npm:
$ npm install http-auth
Example of usage
var digest = auth({
authRealm : "Private area.",
authList : ['Shi:many222', 'Lota:123456']
});
http.createServer(function(req, res) {
digest.apply(req, res, function() {
res.end("Welcome to private area!");
});
}).listen(1337);
Example of loading list of users from file
var digest = auth({
authRealm : "Private area.",
authFile : __dirname + '/users.htpasswd'
});
http.createServer(function(req, res) {
digest.apply(req, res, function() {
res.end("Welcome to private area!");
});
}).listen(1337);
var digest = auth({
authRealm : "Private area.",
authList : ['Shi:many222', 'Lota:123456']
});
app.get('/', digest.apply, function(req, res) {
res.send("Welcome to private area!");
});
Configurations
authRealm
- Authentication realm.authFile
- File where user details are stored in format {user:pass}.authList
- List where user details are stored in format {user:pass}, ignored if authFile
is specified.authType
- Type of authentication, may be basic or digest, optional, default is digest.algorithm
- Algorithm that will be used for authentication, may be MD5 or MD5-sess, optional, default is MD5. Only for digest authType
.
Running tests
It uses nodeunit, so just run following command in package directory:
$ nodeunit tests
Generate docs
It uses dox, run following command in package directory to generate documentation.
$ ./gendocs
Issues
You can find list of issues using this link.
Dependencies
- node-uuid - Generate RFC4122(v4) UUIDs, and also non-RFC compact ids.
Development dependencies
- nodeunit - Easy unit testing in node.js and the browser, based on the assert module.
- dox - Dox is a JavaScript documentation generator written for node.
License
(The MIT License)
Copyright (c) 2011 Gevorg Harutyunyan i@gevorg.me
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the Software), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.