Skip to content

node server side auth app for angular (or any SPA framework) express pluggable

Notifications You must be signed in to change notification settings

vencax/node-spa-auth

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

94 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

REST server for SPA apps authentication

build status

Tested with angular or react, but supposing that all other SPA frameworks have similar possibilities. Provides authentication based on jsonwebtoken (JWT). Is express pluggable - provides express compatible handlers. For example see: app.js

Install

npm install node-spa-auth --save

Configuration

Config is performed through few environment variables:

  • EMAIL_TRANSPORTER_USER: email from who emails are sent (default: 'team@' + hostname)
  • EMAIL_TEMPLATE_DIR: directory where email templates are (default: emailTemplates in this project)
  • EMAIL_VALIDATION_TOKEN_DURATION: duration (in minutes) of tokens used in emails (default 2 days)
  • FALLBACKLANG: code of fallback language for email template (default en)
  • CHPASSWDLINK: url with chage password form (default /changepwd)
  • PROJECT_NAME: name of your project or team used in email templates (default hostname)
  • TOKEN_VALIDITY_IN_MINS: duration of JWT token in minutes (default 24h)
  • SERVERURL: url of server (default ://)
  • SET_PWD_AFTER_VERIFICATION: switch if user is redirect to password setting page after sucessful verification. (default no)

Rest of env vars are probably defined due to other parts of your app. If not, define following:

  • SERVER_SECRET: random string

Dependencies

NOTE: this lib DO NOT care how the user is stored. Instead it recieve usermanip object for all user manipulations. See sequelize_manip.js what methodes such object MUST provide.

If you want to give a feedback, raise an issue.

About

node server side auth app for angular (or any SPA framework) express pluggable

Resources

Stars

Watchers

Forks

Packages

No packages published