Skip to content

carlos8f/node-tinyauth

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

node-tinyauth

Really basic basic authentication middleware

Example

var http = require('http')
  , handler = require('tinyauth')({
      realm: 'My secret server',
      accounts: ['foo:1234']
    })
  , port = 3000
  ;

http.createServer(function(req, res) {
  handler(req, res, function() {
    res.writeHead(200, {'Content-Type': 'text/plain'});
    res.write('welcome!');
    res.end();
  });
}).listen(port, function() {
  console.log('test server running on port ' + port);
});

License

MIT