moneypenny-s3-storage
v1.0.2
Published
S3 storage plugin for moneypenny
Downloads
4
Readme
moneypenny-s3-storage
S3 storage plugin for moneypenny
Authentication Service ( S3 storage provider for moneypenny authentication service )
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
var s3MoneyPennyStore = require('moneypenny-s3-storage')({
bucket: 'TEST-BUCKET'
})
var moneypennyServer = require('moneypenny')({
storageProvider: s3MoneyPennyStore,
loginUrl: '/login.html',
secretOrPrivateKey: 'top_secret'
});