Package Exports
- authentic-service
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 (authentic-service) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
AuthenticService
This is the service component of Authentic. This will help decode tokens so that you can authenticate users within a microservice.
Example
var http = require('http')
var Authentic = require('authentic-service')
var auth = Authentic({
server: 'https://auth.scalehaus.io'
})
http.createServer(function (req, res) {
// Step 1: decrypt the token
auth(req, res, function (err, authData) {
if (err) return console.error(err)
// Step 2: if we get an email and it's one we like, let them in!
if (authData && authData.email.match(/@scalehaus\.io$/)) {
res.writeHead(200)
res.end('You\'re in!')
// otherwise, keep them out!
} else {
res.writeHead(403)
res.end('Nope.')
}
})
}).listen(1338)
console.log('Protected microservice listening on port', 1338)API
Authentic(opts)
This is the main entry point. Accepts an options object and returns a function that can parse and decrypt tokens from http requests.
var auth = Authentic({
server: 'https://auth.scalehaus.io'
})
// auth is now a function that accepts req, res, and a callback
auth(req, res, function(err, authData) { ... })options
Authentic() takes an options object as its first argument, one of them is required:
server: the url of theauthentic-server, e.g.'http://auth.yourdomain.com'
Optional:
prefix: defaults to'/auth'if you set a custom prefix for yourauthentic-server, use that same prefix herecacheDuration: defaults to3600000(1 hour in milliseconds). To minimize latency and requests, this is how longauthentic-servicewill cache theauthentic-serverpublic key.
License
MIT