0.0.5 • Published 6 years ago

@ladjs/auth v0.0.5

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

auth

build status code coverage code style styled with prettier made with lass license

Auth for Lad

Table of Contents

Install

npm:

npm install @ladjs/auth

yarn:

yarn add @ladjs/auth

Usage

const Auth = require('@ladjs/auth');
const koa = require('koa');
const mongoose = require('mongoose');
const passportLocalMongoose = require('passport-local-mongoose');

const User = new mongoose.Schema();
User.plugin(passportLocalMongoose, {
  // ...
});
const Users = mongoose.model('User', UserSchema);

const auth = new Auth(Users, {
  // ...
});

const app = new Koa();
app.use(auth.passport.initialize());
app.use(auth.passport.session());

Options

See index.js for configuration defaults and environment flags.

Contributors

NameWebsite
Nick Baughhttp://niftylettuce.com/

License

MIT © Nick Baugh