Skip to content

mariposacoop/autheremin

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

autheremin

Sets up user authentication in a database in a pretty safe way. Now with bcrypt!

Usage

I'm thinking usage along these lines:

// db must provide get, set, and del methods
var db = require('./db')
var autheremin = require('autheremin')(db)

var username = 'antigone'
var password = '7xqJ3b8n'

autheremin.create(username, password, function(err) {
  if (err) throw err
  // username/password combination was created successfully
})

autheremin.verify(username, password, function(err) {
  if (err) throw err
  // username/password combination was verified against the database
})

autheremin.delete(username, function(err) {
  if(err) throw err
  // record with that username deleted from the database
})

Packages

No packages published

Languages

  • JavaScript 100.0%