Skip to content

Xananax/passport-extended

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Passport-extended

Extends passport with utilities functions in order to be able to kickstart quickly a project that needs authentication

To get started, copy lib/config.js in your root, and edit the options you want to change (you can remove options you want to keep, files will be merged anyway).

Then, when requiring, do this:

var pe = require('passport-extended')(my-config)

"my-config" being your config object, not your config file.

then:

	var passport = pe.passport
	,	User = pe.User
	,	pe-routes = pe.routes

passport is the normal passport object, augmented with a few utils. User is a user repo, overload the functions to store users and retrieve users routes is a function that you can use to automatically add passport routes to your connect or express app:

pe-routes(app);

About

Little utilities around passport

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published