0.0.4 • Published 9 years ago

maki-passport-local v0.0.4

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

maki-passport-local

Build Status Coverage Status

local user logins for maki applications

Quick Start

var Maki = require('maki');
var maki = new Maki();

var Passport = require('maki-passport-local');
var passport = new Passport({ resource: 'Person' });

maki.define('Person', {
  attributes: {
    username: String
  }
});

maki.use( passport );
maki.start();

For a full listing of this and other Maki plugins, see martindale/maki.