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
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.