JSPM

maki-passport-local

0.0.4
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 12
  • Score
    100M100P100Q47045F
  • License MIT

local user logins for maki applications

Package Exports

  • maki-passport-local

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (maki-passport-local) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

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.