aero-auth

Allows users to login.


Keywords
aero, auth, authorization, login, passport
License
GPL-3.0
Install
npm install aero-auth@0.0.1

Documentation

aero-auth

Allow users to login. Requires additional plugins for each login provider.

Installation

Add aero-auth to dependencies in your package.json:

"dependencies": {
    "aero-auth": "*"
}

Make sure you added a database plugin like aerospike before aero-auth is loaded.

Session secret

Your security/api-keys.json should include a session secret if you don't want sessions to be lost on server restart:

{
    "session": {
        "secret": "11111111111111111111111111111111"
    }
}

Database

This plugin will populate the Users table and assume that id is defined for users. It will also use the Sessions table to store session data.

Logout

This plugin will add the route /logout which destroys the session and redirects back to the frontpage.