Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 651 Bytes

README.md

File metadata and controls

14 lines (11 loc) · 651 Bytes

autohost nedb auth provider

This library complies with autohost v0.2.0's auth provider specification. It provides all optional features so it should work well with the auth dashboard built into autohost.

This library currently supports basic, OAuth2 (bearer) and generic token authorization headers. If no authorization header is present, a basic challenge is present.

usage

var host = require( 'autohost' ),
	authProvider = require( 'autohost-nedb-auth' )( {} );
host.init( {}, authProvider );

config

The only real option here is setting noSession to true which will disable the session in the supported passport strategies.