1.0.2 • Published 8 years ago

moneypenny-s3-storage v1.0.2

Weekly downloads
-
License
ISC
Repository
-
Last release
8 years ago

moneypenny-s3-storage

S3 storage plugin for moneypenny

moneypenny-s3-storage

Authentication Service ( S3 storage provider for moneypenny authentication service )

Circle CI Coverage Status

Moneypenny acts as an authentication service that offers multiple authentication strategies to a backend service and sends a JSON web token(JWT) encripted using a shared secret as a response.

Related Projects

Sample Useage

Sample Implementation Code

var s3MoneyPennyStore = require('moneypenny-s3-storage')({
    bucket: 'TEST-BUCKET'
})
var moneypennyServer = require('moneypenny')({
    storageProvider: s3MoneyPennyStore,
    loginUrl: '/login.html',
    secretOrPrivateKey: 'top_secret'
});